@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Dancing+Script:wght@400..700&family=Montagu+Slab:opsz,wght@16..144,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Roboto+Slab:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tagesschrift&display=swap");

/* 
 * Metalink - Global Styles 
 * Industry Standard CSS Structure
 */
 /* ======================
   Gotham Book
====================== */
/* ======================
   Gotham Book (400)
====================== */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2'),
       url('../fonts/Gotham-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
.location-align .loc-address::before{
  font-weight: bold !important;
}
/* ======================
   Gotham Medium (500)
====================== */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
       url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* ======================
   Gotham Black (900)
====================== */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.woff2') format('woff2'),
       url('../fonts/Gotham-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

/* Optional: smooth scroll */
html {
  scroll-behavior: smooth;
}

:root {
  /* Color Palette */
  --primary-color: #22409A; /* Deep Corporate Blue */
  --secondary-color: #E21D3B; /* Vibrant Red */
  --accent-color: #f1faee;
  --text-dark: #1d3557;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Gotham Black', sans-serif;
  --font-body: 'Gotham Book', sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
}
main{
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
/* Reset & Base Styles */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}


/* Helper Utilities */
.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--text-light) !important;
}
.ls-1 {
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #002244;
  border-color: #002244;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Navbar Customization */
#section-1 {
  height: 80px;
  width: 100%;
  border-bottom: 1px solid rgb(234, 232, 232);
    background-color: #ffffff;
    position: fixed;
    z-index: 1000;
    top: 0;display: flex;
    justify-content: center;
align-items: center;   
}

.navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.navbar-logo {
  height: 100%;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-menu {
  height: 100%;
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-right: 100px;
}

.navbar-menu a {
  color: #383838;
  font-family: "Gotham Book", sans-serif;
  font-size: 15px;
  padding: 8px 20px;
  font-weight: 100;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.navbar-menu a:hover {
  color: #383838;
  border-color: #22409A;
  box-shadow: 4px 4px 0px 0px #22409A;
}

/* Hero Section (Section 2) */
#section-2 {
  height: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  
}

.section-2 {
  height: 670px;
  width: 96%;
  border-radius: 15px;
  background-image: url("../images/hero-section.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
}

.hero-title {
  font-weight: 800;
  color: white;
  font-size: clamp(28px, 4.5vw, 3.5rem); /* Scalable font size for all screens */
  line-height: 1.3;
  font-family: 'Gotham Black', sans-serif;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.animated-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  white-space: nowrap; /* Prevents lines from breaking into 5 lines */
}

.animated-line span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

/* Staggering the lines */
.animated-line:nth-child(1) span { animation-delay: 0.2s; }
.animated-line:nth-child(3) span { animation-delay: 0.4s; } /* Child 2 is <br> */
.animated-line:nth-child(5) span { animation-delay: 0.6s; } /* Child 4 is <br> */

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

.highlight-text {
  background-color: var(--primary-color);
  color: white;
  padding: 0 8px;
  border-radius: 4px;
}

.hero-btn {
  padding: 12px 30px;
  height: auto;
  width: auto;
  min-width: 180px;
  border-radius: 12px;
  border: 2px solid transparent;
  background-color: #22409A;
  color: white;
  font-family: 'Gotham Book', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.hero-btn:hover {
  background-color: #22409A;
  box-shadow: 8px 8px 0px 0px #E21D3B;
}

/* --------------------------section-3--------------------- */
#section-3{
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: url("../images/vision-mission-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-3-box1{
    height: 450px;
    width: 580px;
}

.section-3-box1-inner-box1{
    height:270px;
    width: 400px;
    margin-left: 20px;
    margin-top: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    font-family: 'Gotham Book', sans-serif;
}

.section-3-box1-inner-box1-img{
    height: 270px;
    width: 450px;
    background-image: url("../images/Aboutus1.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: -40px;
    margin-top: -280px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.section-3-box1-inner-box2{
    height:270px;
    width: 400px;
    background-color: var(--primary-color);
    margin-top: -80px;
    margin-left: 200px;
    border-radius: 15px;
}

.section-3-box1-inner-box2-img{
    height: 270px;
    width: 400px;
    background-image: url("../images/Aboutus2.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 190px;
    margin-top: -280px;
    border-radius: 15px;
}

.section-3-box2{
    height: 450px;
    width: 700px;
    margin-left: 20px;
}

.section-3-box2-inner-box1{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
    margin-left: 110px;
}

.section-3-box2-inner-box1-content1{
    border-left: 6px solid var(--primary-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}

.section-3-box2-inner-box1-content2{
    border-left: 6px solid var(--secondary-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}

.section-3-box2-inner-box1-content1 p,
.section-3-box2-inner-box1-content2 p {
    margin: 0;
    font-family: 'Gotham Book', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #383838;
}

.section-3-box2-inner-box2{
    height: 250px;
    width: 500px;
    margin-left: 110px;
}

.section-3-box2-inner-box2 h1{
    font-family: 'Gotham Black', sans-serif;
    color: #383838;
    font-size: 48px;
    font-weight: 800;

}

.section-3-box2-inner-box2 p{
    font-family: 'Gotham Book', sans-serif;
    color:#383838;
    font-size: 16px;
}


/* -----------------------section-4 (Partners Support) ------------------------ */
.partners-support-section {
    background-color: #0E1D2F; /* Dark navy from image */
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
   
    
}

.partners-support-container {
    max-width: 1600px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.partners-support-left {
    flex: 1;
}

.partners-support-heading {
    font-family: 'Gotham Black', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1;
}

.partners-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partners-support-list li {
    font-family: 'Gotham Book', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    color: white;
}

.partners-support-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
}

.list-item-blue::before {
    background-color: var(--primary-color);
}

.list-item-red::before {
    background-color: var(--secondary-color);
}

.partners-support-subtext {
    font-family: 'Gotham Book', sans-serif;
    font-size: 20px;
     color: white;
    margin-top: 20px;
  
}

.partners-support-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-box-wrapper {
    position: relative;
    width: 400px;
}

.vision-box {
    border: 4px solid;
    border-image: linear-gradient(135deg, #E21D3B 0%, #22409A 100%) 1;
    padding: 30px 50px;
    background-color: transparent;
    text-align: center;
    position: relative;
}

.vision-text {
    font-family: 'Gotham Book', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
    margin: 0;
    font-weight: 300;
}

.vision-text .white-text {
    font-weight: bold;
    color: white;
}

.vision-text .yellow-text {
    color: white; /* yellow */
    font-weight: bold;
}

.vision-line {
    position: absolute;
    right: -500px;
    top: 50%;
    width: 500px;
    height: 20px;
    background: linear-gradient(90deg, #22409A, rgba(34, 64, 154, 0.2));
    transform: translateY(-50%);
}





/* -------- Manufacturing Strength & Global Execution -------- */
#section-7{
   padding: 20px 0;
    width: 100%;
}

.section-7{
   padding: 80px 0;
    width: 100%;
    display: flex;
   
    justify-content: space-evenly;
}

.section-7-box1{
    width: 430px;
   
}

.section-7-box1 h1{
    font-size: 32px;
    color: #383838;
     font-family: "Gotham Black", sans-serif;
     font-weight: bold;
}

.brand-block{
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.brand-block img {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.section-7-box2{
    width: 55%;
}

.row{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.card{
    width: 45%;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 10px 20px;
    font-family: "Gotham Book", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #383838;
    transition: all 0.3s ease;
}
.card:hover{
    transform: scale(1.1);
  
}
.card.blue{
    border: 2px solid var(--primary-color);
    box-shadow: 4px 4px 0 var(--primary-color);
}

.card.red{
    border: 2px solid var(--secondary-color);
    box-shadow: 4px 4px 0 var(--secondary-color);
}

/* Section Styling */
.section {
  padding: var(--spacing-xl) 0;
}

.section--light {
  background-color: var(--bg-light);
}

.section--dark {
  background-color: var(--primary-color);
  color: var(--white);
}



/* Litmus Industries About Section */
.litmus-about-section {
  position: relative;
  background-color: #f5f5f4;
  padding: 80px 0;
  overflow: hidden;
}

.litmus-about-section__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    linear-gradient(
      135deg,
      transparent 33%,
      #cbd5e1 33%,
      #cbd5e1 34%,
      transparent 34%
    ),
    linear-gradient(
      135deg,
      transparent 66%,
      #cbd5e1 66%,
      #cbd5e1 67%,
      transparent 67%
    );
  background-size: 60px 60px;
}

.litmus-about__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.litmus-about__logo-badge {
  background-color: #f5c518;
  padding: 18px 32px;
  display: inline-block;
  position: relative;
}

.litmus-about__logo-badge::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #d4a80e;
}

.litmus-about__logo-text-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #1a237e;
  letter-spacing: 2px;
  line-height: 1;
}

.litmus-about__logo-text-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: #1a237e;
  letter-spacing: 3.5px;
  margin-top: 2px;
}

.litmus-about__counter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 4px;
}

.litmus-about__counter-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: #1a237e;
  line-height: 1;
  letter-spacing: -2px;
}

.litmus-about__counter-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: #f5c518;
  margin-top: -4px;
  padding-left: 4px;
}

.litmus-about__heading {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a237e;
  line-height: 1.35;
  margin-bottom: 24px;
}

.litmus-about__heading strong {
  color: #1a237e;
  font-weight: 800;
}

.litmus-about__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.litmus-about__text strong {
  font-weight: 600;
  color: #2d3748;
}

.litmus-about__emphasis {
  font-weight: 700 !important;
  color: #1a237e !important;
  font-style: italic;
}

/* Responsive adjustments for Litmus About Section */
@media (max-width: 767.98px) {
  .litmus-about-section {
    padding: 50px 0;
  }

  .litmus-about__brand {
    align-items: center;
    text-align: center;
  }

  .litmus-about__counter-number {
    font-size: 3.5rem;
  }

  .litmus-about__heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .litmus-about__text {
    text-align: center;
  }
}

/* Footer */


/* ---------------------- Section 5 ---------------------------- */
#section-5 {
   background-image: url("../images/vision-mission-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  height: 650px;
  width: 100%;
  background-color: rgb(255, 255, 255);
   position: relative;
}

.section-5 {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-5-box1 {
  height: 300px;
  width: 300px;
  /* background-color: aqua; */
}

.section-5-box2 {
  height: 300px;
  width: 79%;
   margin-left: 50px;

}

.section-5-box1-content {
  height: 160px;
 
  display: flex;
  align-items: center;
  justify-content: center;
}

.s5-litmus-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.section-5-counter {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-left: 20px; /* Reduced from 60px to move left */
}

.section-5-box1 .section-5-box1-heading {
  font-family: "Gotham Black", sans-serif;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-size: 110px;
  font-weight: 800;
  margin: 0;
}

.section-5-years {
  font-family: "Gotham Book", sans-serif;
  color: rgb(15, 15, 132);
  font-size: 24px;
  margin: 0;
   margin-left: -20px;
}

.section-5-box2 h1 {
  font-family: "Gotham Black", sans-serif;
  
  font-size: 48px;
  font-weight: 800;
    color: #383838;
   
}

.section-5-box2 p {
  font-family: "Gotham Book", sans-serif;
  
  color: #383838;
  font-size: 16px;
   max-width: 1300px; 
}
@media(max-width:1700px){
  .section-5-box2 p {

   max-width: 1000px; 
}
}
@media(max-width:1500px){
  .section-5-box2 p {

   max-width: 800px; 
}
}
@media(max-width:1350px){
   .section-5-box2 h1{

   font-size: 46px; 
}
.section-5-box2  {
margin-left: 30px;
  
}}
/* ---------------------- Section 6 ---------------------------- */
#section-6 {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

#section-6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    175deg,
    #E21D3B var(--grad-col1, 0%),
    #22409A var(--grad-col2, 100%)
  );
  z-index: -1;
  transform: translateY(-50%);
}

.section-6 {
  width: 100%;
 
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-6-box1 {
  display: none;
}

.section-6-box2 {
  width: 80%;
 
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(30deg, #E21D3B, #22409A) border-box;
  border: 4px solid transparent;
  border-radius: 20px;
  padding: 40px 50px;
  box-sizing: border-box;
}

.section-6-box2 h1 {
  font-family: "Gotham Black", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #383838;
  margin-bottom: 20px;
}

.section-6-box2 p {
  font-family: "Gotham Book", sans-serif;
  color: #383838;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 14px;
}
.location-container{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}
.certification{
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px 0;
     margin: 0 auto;
   

}
.badges{
    width: 85%;
    display: flex;
    margin: 0 auto;
   flex-wrap:wrap ;
   gap: 80px;
   justify-content: center;
}
.badge{
    display: flex;
   flex-direction: column;
   align-items: center;

}
.badge-1{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 158px;
    
}
.certify{
    position: absolute;
    bottom: 0;
    transition: opacity 0.4s ease;
}
.badge-1 {
    position: relative;
}

/* Both SVGs same position */

/* -------- Ramesh Corp Section -------- */
#ramesh-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    background-image: url("../images/vision-mission-bg.png");
    background-size: cover;
    background-position: center;
}

.ramesh-container {
    width: 90%;
    max-width: 1300px;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ramesh-text {
    width: 65%;
    font-family: 'Gotham Black', sans-serif;
}

.ramesh-text h1 {
    font-size: 44px;
    font-weight: 800;
    color: #383838;
    margin-bottom: 30px;
}

.ramesh-text h1 .blue {
    color: #22409A;
}

.ramesh-text h1 .red {
    color: #E21D3B;
}

.ramesh-text p {
    font-family: 'Gotham Book', sans-serif;
    font-size: 16px;
    color: #383838;
     margin-top: 20px;
    
    max-width: 90%;
}

.ramesh-brand {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.ramesh-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
}

.ramesh-brand a {
    background-color: #22409A;
    color: #fff;
    padding: 10px 28px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Gotham Book', sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-self: flex-start;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    transition: all 0.3s ease;
}




.ramesh-brand a:hover {
  background-color: #22409A;
  box-shadow: 8px 8px 0px 0px #E21D3B;
}

/* -------- Power Transmission & Distribution -------- */
#power-section {
   
    padding: 70px 0 80px;
    background-color: #ffffff;
    text-align: center;
}

.power-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Title */
.power-title {
    font-size: 48px;
    font-family: "Gotham Black", sans-serif;
    color: #383838;
    font-weight: 800;
}

/* Subtitle */
.power-subtitle {
    font-size: 16px;
    color: #383838;
     font-family: 'Gotham Book', sans-serif;    
     margin-top: 20px;
    line-height: 1.7;
    max-width: 820px;
    margin: 20px auto  ;
}

/* Filter Tabs */
.power-tabs {
    display: flex;
  
    gap: 28px;
    justify-content:center;
    margin-bottom: 48px;
    margin-top: 60px;
}

.power-tab {
    padding: 12px 20px;
    border-radius: 12px;
    border: 0;
    background-color: #d9dfee;
    color: #383838;
    font-family: "Gotham Medium", sans-serif;
    font-size: 15px;
    font-weight:550;
    cursor: pointer;
    transition: all 0.2s ease;
    
}

.power-tab:hover {
    border-color: rgb(20, 20, 159);
    color: rgb(20, 20, 159);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}

.power-tab.active {
    background-color:var(--primary-color);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Product Grid — 3 columns */
.power-grid {
  width: 89%;
  margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    gap: 30px;
    max-height: 600px;
    overflow-y: scroll;
    
    
}


/* Style select like tab */


.power-grid::-webkit-scrollbar {
  display: none;
}

/* Individual Product Card */
.product-card {
    border-radius: 14px;
    overflow: hidden;
     position: relative; 
   min-width: 280px;
    background: linear-gradient(to bottom, #D9DFEE 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card img{
  width: 70%;
  margin:  0 auto;
}
.product-overlay {

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(100%);
    
    transition: transform 0.4s ease;
}
.product-img-area img{
  display: block;
transition: all 0.3s ease;
}
/* Hover Effect */
.product-card:hover .product-overlay {

    transform: translateY(0);
}
.product-card:hover .product-img-area img{
  transform: scale(1.2);
}
/* Hide on desktop */






/* Mobile only */
/* Button */
.view-btn {

    color: white;
    border: 1px solid white;

    padding: 10px 18px;
font-family: "Gotham Book", sans-serif;
    text-decoration: none;

    font-size: 16px;
font-weight: 300;
    transition: 0.3s; background: rgba(0,0,0,0.35);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}


.view-btn:hover {

  
    color: var(--primary-color)
}



/* Empty image placeholder */
.product-img-area {
   /* IMPORTANT */
    flex: 1;
    min-height: 200px;
    background: linear-gradient(to bottom, #D9DFEE 0%, #FFFFFF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
   .product-img-area img {
  display: block;
transition: all 0.3 ease; }

/* Blue label banner */
.product-label {
    background-color:var(--primary-color);
    color: #ffffff;
    font-family: "Gotham Book", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0 16px;
    line-height: 1.4;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Default state */
.badge-normal {
    opacity: 1;
}

.badge-hover {
    opacity: 0;
}

/* Hover effect */
.badge:hover .badge-normal {
    opacity: 0;
}

.badge:hover .badge-hover {
    opacity: 1;
}
.vision-mission-container{
     
      background-image: url(../images/vision-mission-bg.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: column;
      gap: 200px;
      position: relative;
      padding: 80px 0 180px;
        max-width: 1920px;
        margin: 0 auto;
}
.certification h2{
    color: #383838;
    font-size: 48px;
    font-family: 'Gotham Black', sans-serif;
    text-align: center;
    font-weight: 800;
    margin-bottom: 80px;
}
.vision-mission{
    display: flex;
    align-items: end;
    gap: 200px;
    justify-content: space-between;
    padding-right: 200px;
}
.vision-mission-img{
    z-index: 100;
}
.vision-mission-text{
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 700px;
}
.textss{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: start;

}

.textss img{
    transition: all 0.3s ease;
}
.textss img:hover{
    transform: scale(1.1);
}
.rect{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.img-text h3{
        font-size: 48px;
        color: #383838;
        font-family: 'Gotham Black', sans-serif;
            padding-bottom: 2px;
            width:fit-content;
            margin-bottom: 18px;
}
.img-text p{
    font-size: 18px;
    color: #383838;
     font-family: 'Gotham Book', sans-serif;    
}
.vision .img-text h3{
    border-bottom: 4px solid var(--primary-color);
}
.mission .img-text h3{
    border-bottom: 4px solid var(--secondary-color);
}
.commitment{
    padding:100px 0 ;
    
     background-color: #0E1D2F;
     max-width: 1920px;
        margin: 0 auto;
}
.commitment h2{
    color: #383838;
    font-size: 48px;
    font-family: 'Gotham Black', sans-serif;
    text-align: center;
    color: white;
    
}
.commitment p{
    font-size: 16px;
    color: #ffffff;
     font-family: 'Gotham Book', sans-serif;    
     text-align: center;
     max-width: 700px;
     margin: 20px auto;
     
}
.commit-points{
    display: flex;
    gap: 90px;
    justify-content: center;
   flex-wrap: wrap;
  
    padding: 0 60px;
    max-width: 1350px;
    margin: 100px auto 0;
}
.commit{
    display: flex;
    flex-direction: column;
    
    align-items: center;
    width:200px;
        transition: all 0.4s ease;}
.commit-icon{
    width: 40px;
    height: 40px;
    background-color: #7081C8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all 0.4s ease;
}
.commit p{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
     font-family: 'Gotham Book', sans-serif;    
     text-align: center;
     font-weight: 200 !important;
     margin-top: 10px;
     line-height: 1.3;
     max-width: 140px;
}
.commit:hover .commit-icon {
    background: #F2F3FF;
    box-shadow:
        0px 0px 150px 24px #CACFFF,
        0px 0px 53.76px 0px #22409A,
        0px 0px 26.88px 0px #CACFFF,
        0px 0px 3.84px 0px #CACFFF; /* 4th shadow you gave */
}
.markets{
  padding: 120px 60px;
  display: flex;
  
  background-color: #0E1D2F;
  align-items:center;
  justify-content: center;
   max-width: 1920px;
        margin: 0 auto;
 

}
.market-container{
display: flex;
gap: 200px;
align-items: end;
justify-content: space-between;
max-width: 1350px;
margin: 0 auto;
}
.markets-left {
  width: 50%;
}
.markets-left h2 {
  color: #383838;
  font-size: 48px;
  font-family: 'Gotham Black', sans-serif;
  color: white;
}
.markets-left p {
  font-size: 16px;
  color: #ffffff;
  font-family: 'Gotham Book', sans-serif;
  margin: 20px 0 20px;
}
.markets-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.market-point {
  position: relative;
  padding: 6px 18px;
  padding-left: 26px; /* space for fake border */
  font-size: 20px;
  font-family: 'gotham book', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

/* Left Border */
.market-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #22409A;
  transition:all 0.3s ease;
}

/* Hover */
.market-point:hover {
  color: white;
}
.mobile-menu-icon{
  display: none;
}
 .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.25);
      backdrop-filter: blur(2px);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 998;
    }

    .mobile-overlay.visible {
      display: block;
    }

    .mobile-overlay.active {
      opacity: 1;
    }

    /* ── MOBILE DRAWER ── */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: min(280px, 85vw);
      height: 100dvh;
      background: #ffffff;
      z-index: 9999;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    /* Drawer header */
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
   
    }

    .mobile-menu-header .brand {
      font-size: 1rem;
      font-weight: 700;
      color: #383838;
      letter-spacing: 0.05em;
    }

    .close-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: #f5f5f5;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
    }

    .close-btn:hover {
      background: #333;
      transform: rotate(90deg);
    }

    .close-btn i {
      font-size: 1rem;
      color: #383838;
    }

    /* Drawer links */
    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      padding:0px 0;
      flex: 1;
    }

    .mobile-menu-links a {
      text-decoration: none;
      color: #383838;
      font-size: 18px;
      font-family: 'Gotham Book', sans-serif;
      font-weight: 500;
      padding: 16px 28px;
      border-left: 3px solid transparent;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      display: flex;
      align-items: center;
      gap: 12px;
    }
  
    

    .mobile-menu-links a:hover {
      background: #f5f8ff;
      color: var(--primary-color);
      border-left-color: var(--primary-color);
    }
.market-point:hover::before {

  background: #F2F3FF;

  box-shadow:
    0px 0px 150px 24px #CACFFF,
    0px 0px 53.76px 0px #22409A,
    0px 0px 26.88px 0px #CACFFF,
    0px 0px 3.84px 0px #CACFFF;
}
/* SIDEBAR */
 .page {
    display: flex;
    min-height: calc(100vh - var(--nav-h));
    max-width: 1800px;
    margin: 0 auto;
     
  }

  /* SIDEBAR */
  .sidebar {
    width: 28%;
    min-width: 320px;
    padding: 20px 0 36px 32px;
    position: sticky;
    top:120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    border-right: 2px solid var(--primary-color);
  }

  .sidebar-title {
    font-size: 20px;
    font-weight: bold;
   
    color: #383838;
     font-family: 'Gotham Black', sans-serif; 
    margin-bottom: 16px;
    margin-left: 36px;}

  .toc-list { list-style: none; }

  .toc-list li { margin-bottom: 10px; }

  .toc-list a {
    display: block;
    font-size: 16px;
     font-family: 'Gotham Black', sans-serif;
    color: #757575;
    font-weight: medium;
    text-decoration: none;
    padding: 5px 8px;
   
  }

  .toc-list a:hover {
    color: var(--primary-color);
   
  }

  .toc-list a.active {
    color: var(--primary-color);
   
 
    font-weight: 500;
  }

  /* CONTENT */
  .content {
    flex: 1;
    padding: 48px 100px 80px 40px;
    max-width: 1200px;
    margin-top: 80px;
  }

  .content h1 {
    font-family: 'Gotham Black', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #383838;
    margin-bottom: 15px;
    padding-bottom: 20px;
    
  }

  .policy-section {
    margin-bottom: 48px;
    scroll-margin-top: calc(120px + 24px);
  }

  .policy-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #383838;
     font-family: 'Gotham Black', sans-serif;
    margin-bottom: 8px;
    padding-bottom: 10px;
  
  }

  .policy-section p {
    font-size: 16px;
     font-family: 'Gotham Book', sans-serif;
     
    color: #383838;
   
  }

  .policy-section ul {
    margin: 10px 0 12px 0px;
  }

  .policy-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #383838;
     font-family: 'Gotham Book', sans-serif;
    
  }

  


  a.ext-link { color: var(--primary-color); text-decoration: none;
  font-weight: bold; }
  a.ext-link:hover { text-decoration: underline; }
  /* Sidebar scrollbar */
  .sidebar::-webkit-scrollbar { width: 4px; }
  .sidebar::-webkit-scrollbar-track { background: transparent; }
  .sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
  .contact-wrapper {
      background: #fff;
      border-radius: 12px;
     
      padding: 120px 0px 120px 60px;
      max-width: 100%;
      width: 100%;
      display: flex;
      gap: 48px;
      align-items: center;
      justify-content: space-between;
    }

    /* LEFT FORM SIDE */
    .form-side {
     
      width: 60%;
    }

    .form-side h2 {
      font-size: 48px;
      font-weight: 800;
      color: #383838;
      margin-bottom: 32px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 30px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 16px;
      font-weight: 550;
      color: #383838;
        font-family: 'Gotham Black', sans-serif;
      margin-bottom: 6px;
    }

   

    .form-group input,
    .form-group select,.form-group textarea {
      border: none;
      border-bottom: 1.5px solid var(--primary-color);
      outline: none;
      padding: 8px 10px;
      font-size: 16px;
      font-family: 'Gotham Book', sans-serif;
      color: #383838;
      background: transparent;
      transition: border-color 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #a8a8a8;
    }

    .form-group input:focus,
    .form-group select:focus,.form-group textarea:focus {
      border-bottom: 2px solid var(--primary-color);
      
    }

    .select-wrapper {
      position: relative;
    }

    .select-wrapper select {
      width: 100%;
      cursor: pointer;
    }

    .select-wrapper::after {
      content: '';
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      color: #555;
      pointer-events: none;
      font-size: 14px;
    }
.submit-area {
    margin-top: 20px;
            /* shrink-wraps to content */
    align-items: stretch;
  }
    .send-btn {
      margin-top: 20px;
      background: var(--primary-color);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 10px 50px;
      font-size: 18px;
      font-weight: 300;
      font-family: 'Gotham Book', sans-serif;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      
      transition: all 0.2s ease;
    }
.select-wrapper .fa-chevron-down {
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      color: #a8a8a8;
      pointer-events: none;
      font-size: 12px;
    }
    .send-btn:hover {
      background: #22409A;
     box-shadow: 8px 8px 0px 0px #E21D3B;
    }
     .multi-select-wrapper {
    position: relative;
    width: 100%;
  }
  /* ── Success toast ── */
  .success-toast {
    display: none;                 /* hidden by default */
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid var(--primary-color);
    border-radius: 12px;
    padding: 12px 20px 12px 20px;
   
    box-shadow: 4.78px 4.78px 0 0 #22409A;
    animation: toastIn 0.25s ease;
    position: relative;
  }

  .success-toast.visible {
    display: flex;                 /* shown after success */
  }

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

  .toast-text {
    font-size: 16px;
    color: #383838;
    font-family: 'Gotham Book', sans-serif;
    line-height: 1.5;
  
  }

  .toast-close {
    
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 4%;
    right: 0.5%;
    background: var(--primary-color);
    color: #fff;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
  }

  .toast-close:hover {
    background: var(--secondary-color);
  
  }


  /* The visible "input" box */
  .multi-select-box {
    width: 100%;
    min-height: 44px;
    border-bottom: 1px solid var(--primary-color);
   
    padding: 6px 36px 6px 10px;
    background: #fff;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    transition: all 0.2s;
  }

  .multi-select-box:focus-within,
  .multi-select-wrapper.open .multi-select-box {
    border-color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    outline: none;
  }

  /* Placeholder text */
  .multi-select-placeholder {
    color: #a8a8a8;
    font-size: 16px;
    pointer-events: none;
    user-select: none;
  }

  /* Blue chips */
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dbeafe;
    color:var(--primary-color);
    border-radius: 20px;
    padding: 3px 10px 3px 10px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    animation: chipIn 0.15s ease;
  }

  @keyframes chipIn {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
  }

  .chip-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 11px;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.15s;
  }

  .chip-remove:hover { opacity: 1; }

  /* Chevron icon */
  .multi-select-wrapper .fa-chevron-down {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #a8a8a8;
    pointer-events: none;
    font-size: 12px;
    transition: transform 0.2s;
  }

  .multi-select-wrapper.open .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Dropdown list */
  .multi-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
   
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 999;
    overflow: hidden;
    display: none;
     max-height: 220px;   /* show ~5 options at a time */
  overflow-y: auto;
  }
.multi-select-dropdown::-webkit-scrollbar {
  width: 5px;
}
.multi-select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.multi-select-dropdown::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 8px;
}
.multi-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
  .multi-select-wrapper.open .multi-select-dropdown {
    display: block;
    animation: dropIn 0.15s ease;
  }

  @keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .dropdown-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding:8px 10px;
    font-size: 14px;
    color: #383838;
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
  }

  .dropdown-option:hover {
    background: #f0f6ff;
  }

  .dropdown-option.selected {
    background: #eff6ff;
    color: var(--primary-color);
  }

  /* Custom checkbox */
  .opt-checkbox {
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
  }

  .dropdown-option.selected .opt-checkbox {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }

  .opt-checkbox i {
    color: #fff;
    font-size: 9px;
    display: none;
  }

  .dropdown-option.selected .opt-checkbox i {
    display: block;
  }

  /* Hidden real select for form submission */
  .real-select { display: none; }

    /* RIGHT MAP SIDE */
    .map-side {
      width: 33%;

   
    }

    .map-container {
      border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
      border-left: 2px solid var(--primary-color);
      border-top: 2px solid var(--primary-color);
      overflow: hidden;
      box-shadow: 10px 10px 0px 0px #E21D3B;
      height: 400px;
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

.slanted-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height:700px;
    padding:0px  40px 80px;
    color: white;
    overflow: hidden;
    
     margin: 0 auto;
 
}

.slanted-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    margin-top:120px;
    height: 100%;
  background: linear-gradient(
    90deg,
    #E21D3B var(--grad-col1, 0%),
    #22409A var(--grad-col2, 100%)
  );
    transform: skewY(-10deg);
    transform-origin: top right;
    z-index: -1;

}
.slanted-section h2{
  text-align: center;
  margin-bottom:800px ;
  color: #383838;
  font-size: 48px;
  font-family: 'Gotham Black',sans-serif;
  font-weight: 800;
}
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  align-items: start; 
    
    position:absolute;
    top:18% ;
    left: 15%;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
  }
.expanded-text p:last-child {
  display: inline;
  margin: 0;
}
  .testimonial-card {
    background: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 8px 8px 0px 0px #22409A;
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
   
  }

  

  /* Grows to fill available height → pushes footer down */
  .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    
  }

  .quote-text {
    font-size: 14px;
    color: #383838;
    line-height: 1.78;

  }
.cards-container{
  position: relative;
}
  .quote-text .collapsed-text { display: inline;
   font-family: 'Gotham Book',sans-serif;
    font-size: 14px; }
  .quote-text .expanded-text { display: none; 
   font-family: 'Gotham Book',sans-serif;
    font-size: 14px;}
.collapsed-text{
  height: 120px;
}
  .testimonial-card.expanded .quote-text .collapsed-text { display: none; }
  .testimonial-card.expanded .quote-text .expanded-text { display: inline; }

  .expanded-text p { margin-bottom: 14px; }
  .expanded-text p:last-child { margin-bottom: 0; }

  .toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Gotham Book', sans-serif;
    font-size: 14px;
    font-weight: 700;
   
    padding: 0;
    
    
    transition: color 0.2s;
  
    display: inline;
  }

  .read-label{
    color: var(--primary-color);

  }
  .less-label{
    color: var(--secondary-color);
  }

  .card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;

    flex-shrink: 0;
  }

  .author-name {
    font-size: 16px;
    font-weight: 700;
    color: #383838;
    margin-bottom: 3px;
    font-family: 'Gotham Black',sans-serif;
  }

  .author-role {
    font-size: 16px;
    color: #383838;
    margin-bottom: 5px;
     font-family: 'Gotham Black',sans-serif;
  }
 
  .author-company {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .quote-icon { flex-shrink: 0; }
  .quote-icon svg { width: 56px; height: 44px; display: block; }
/* ============== SLIDER STYLES (Mobile < 768px) ============== */

.slider-controls {
     position: absolute;
    top: 50%;
    left: -2%;
    width: 102%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    display: none;
   
}

.arrow-btn {
     background: var(--primary-color); /* semi transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.arrow-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.dots-container {
    display: none;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0;
   
    background:#7081C8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color)
    ;
    border: 1px solid white ;
    transform: scale(1.2);
}
#mobiletest{
  display: none !important;
}
/* Mobile Styles */

/* Desktop Styles >= 992px */

   

    /* Red bottom accent bar */
    @media(max-width:1800px){
      .cards-grid{
        left: 12%;
      }
    }
@media(max-width:1700px){
  .section-6-box2{
    width: 85%;
    padding: 40px 80px;
  }
  .cards-grid{
        left: 10%;
      }
}
@media(max-width:1600px){
  .cards-grid{
        left: 13%;
      }
      .testimonial-card{
        max-width: 550px;
      }
     
}
@media(max-width:1550px){
  .vision-mission{
   
    padding-right: 100px;
  }
  .cards-grid{
        left: 11%;
      }
  .power-container{
    padding: 40px 0;
  }
 
}
@media(max-width:1480px){
  .cards-grid{
    gap: 60px;
    left: 10%;
  }
    .slanted-section::before{
        margin-top:200px;
      }
}
@media(max-width:1440px){
  .vision-mission{
   
    padding-right: 0px;
  }
  .cards-grid{
    left: 9%;
  }
  .market-container{
    gap: 100px;
  }
  
}
@media(max-width:1400px){
  .cards-grid{
    left: 7%;
  }
}
@media(max-width:1320px){
  .badges{
    gap: 60px;
    width: 88%;
  }
  .chip{
    font-size: 12px;
  }
  .vision-mission{
    gap: 100px;
  }
  .cards-grid{
    left: 10%;
  }
  .testimonial-card{
    max-width: 500px;
  }
  .market-container{
    gap: 50px;
  }
  .markets-left{
    width: 50%;
  }
   .markets-right{
    width: 38%;
  }
  .markets-left img{
    height: 280px;
  }
  .ramesh-container{
    width: 97%;
  }
   .section-6-box2{
    width: 85%;
    padding: 40px 50px;
  }

   .section-5-box2 h1{

   font-size: 42px; 
}
 .section-5-box2{

   margin-left: 20px; 
}

}
@media(max-width:1280px){
  .cards-grid{
    left: 7%;
  }
}
@media(max-width:1220px){
  .cards-grid{
    left: 5%;
  }
  .contact-wrapper{
    padding-left: 40px;
  }
}
@media(max-width:1200px){
  .commit{
    width: 150px;
  }
  .power-container{
    width: 100%;
  }
  .ramesh-text h1{
    font-size: 42px;
  }
  .ramesh-container{
    width: 95%;
  }
  
}
@media(max-width:1180px){
   .section-5-box2 h1{

   font-size: 39px; 
}
 .section-5-box2{

   margin-left: 10px; 
}
.section-5-box1{

  width: 220px;
}
.section-5-box1 .section-5-box1-heading{
  font-size: 72px;
}
  .certify{
    height: 140px;
  }
  .ramesh-text{
    width: 55%;
  }
  .ramesh-brand{
    width: 45%;
  }
  .badge-1{
    height: 140px;
  }
  .section-6-box2{
    width: 90%;
    padding: 35px;
  
  }
  .section-6-box2 h1{
    font-size: 42px;
  }
  .badges{
    gap: 30px;
    width: 91%;
  }
  .vision-mission-text{
    padding-right: 30px;
  }
  .vision-mission{
    gap: 80px;
}
.markets-left img{
    height: 210px;
  
}
.section-7 .row{
  justify-content: center;
  gap: 18px;
}
.card{
  width: 47%;
}
.markets-right{
  gap: 15px;
  width: 45%;
}
.cards-grid{
  left: 5%;
  gap: 40px;
}
      
}
@media(max-width:1150px){
  .cards-grid{
  left: 3.5%;
  
}

}
@media(max-width:1120px){
  .testimonial-card{
    width:450px ;
    padding: 25px;
  }
   .cards-grid{
  left: 8%;
  
}
}
@media(max-width:1100px){
  .section-7{
    justify-content:space-between;
    width: 100%;
    padding: 0 20px;
  }
  .section-7-box2{
    width:58% ;
    
  }

  .section-7-box1{
    width:380px;
  }
   .section-7-box1 h1{
    font-size: 30px;
   }
   .row .card{
    width: 48%;
   }
   .cards-grid{
  left: 6%;
  
}
}
@media(max-width:1064px){
  .cards-grid{
  left: 5%;
  
}
}
@media(max-width:1045px){
  .cards-grid{
    left: 4%;
  }
}
@media(max-width:1024px){
  .certify{
    height: 120px;
  }
  .badge-1{
    height: 120px;
  }
  .partners-support-container{
    width: 95%;
  }
  .section-5{
   flex-direction: column;
        align-items: flex-start;
        padding: 40px 0;
        gap: 30px;
  }
  
    .section-5-box1{
      width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    
    }
  .badge-1 img{
    height: 60px;
  }
   .certify{
    height: 120px !important;
  }
  .certification h2{
    font-size: 40px;
  }
  .wiree{
    display: none;
  }
  .vision-mission{
    gap: 0;
justify-content: center;
align-items: center;
margin-top: 180px;
padding: 0 30px;
  }
  .vision-mission-container{
    padding-bottom: 80px;
  }
  .img-text h3{
    font-size: 40px;
  }
  .img-text p{
    font-size: 16px;
  }
  .commitment h2{
    font-size: 40px;
  }
  .markets-left h2{
    font-size: 40px;
  }
   .markets-left p{
    font-size: 14px;
  }
  .markets-left img{
    height: 180px;
  }
  .market-point{
    font-size: 18px;
}
.markets-right{
  gap: 10px;
}
.power-title{
  font-size: 40px;
}
.power-subtitle{
  font-size: 14px;
}
.power-tabs{
  gap: 20px;
}
.power-tab{
  font-size: 14px;
  padding: 10px 16px;
}
.power-grid{
  gap: 20px;
width: 90%;
}
.ramesh-text h1{
  font-size: 40px;
}
.product-card{
  min-width: 220px;
}
.content{
  padding: 40px 20px 80px 20px;
}
.sidebar{
  padding-left: 0;
  width: 20%;
  min-width: 260px;
}
.form-side h2{
  font-size: 42px;
}
.toc-list{
  padding-left: 20px;
}
.sidebar-title{
  margin-left: 20px;
}
.cards-grid{
  gap: 30px;
  left: 3.3%;
}
}
@media(max-width:992px){
  .commit-points{
    gap: 60px;
    padding: 0 30px;
  
  }
  .navbar-logo{
    justify-content: left;
  }
  .contact-wrapper{
    flex-direction: column;
    gap: 40px;
    padding:80px 0 0;
    
  }
  .form-side, .map-side{
    width: 100%;
  }
   .map-container{
    height: 400px;
    border-radius: 0;
    border: 0;
    
   }
   .form-side{
    padding: 0 40px;
   }

  
  .partners-support-container{
    flex-direction: column;
    align-items: start;
    width: 85%;
    gap: 40px;
  }
   .mobile-menu-icon {
        display: block !important;
        font-size: 32px;
        color: #383838;
        cursor: pointer;
        margin-right: 30px;
    }
  .navbar-menu{
    display: none;
  }
  .mobile-menu-icon{
    display: flex;
  }
  .ramesh-container{
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  .ramesh-brand{
    width: 100%;
    align-items: flex-start;
  }
  .ramesh-text{
    width: 100%;
    text-align: left;
  }
  .ramesh-text p{
    max-width: 100%;
  }
  .ramesh-brand a{
    margin-left: 0;
    font-size: 18px;
  }
  .section-7{
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    height: fit-content !important;
  

  }
  
  .section-7-box1, .section-7-box2{
    width: 80%;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

   .section-7-box1 h1{
    font-size: 30px;
   }
   .row .card{
    width: 48%;
   }
  #ramesh-section{
    padding: 40px 0 40px;}
   .commit{
    width: 150px;
   }
  
  .commit p{
    font-size: 16px;
    max-width: 120px;
  }
  .market-container{
    flex-direction: column;
    gap: 50px;
    justify-content: left;
    align-items: start;
    margin: 0;
  }
  .markets-left, .markets-right{
    width: 100%;
    justify-content: left;
    align-items: flex-start;
  }
   .markets-left img{
    height: 250px;
  }
  .markets{
    
    justify-content: left;
    align-items: flex-start;
  }
  .markets-right{
    gap: 15px;
  }
  
}
@media (max-width:992px) {
    .slanted-section {
        height: auto;
        padding: 40px 20px 60px;
    }
.slanted-section::before{
        margin-top:350px;
      }
    .slanted-section h2 {
        margin-bottom: 80px;
        font-size:40px;
    }

    .quote-text
{
  line-height:1.45;
}  

    .cards-grid {
        display: flex;
        gap: 30px;
        position: static !important;
        top: auto;
        left: auto;
        max-width: 100%;
        margin: 0;
      
     
         transition: transform 0.4s ease;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        margin: 0 auto;
      padding: 32px 36px;
      
    }
.quote-text{
  height: 250px;
}
    .slider-controls,
    .dots-container {
        display: flex;
    }

    .toggle-btn {
        display: none;
    }

    /* Show all text on mobile */
    .quote-text .collapsed-text {
        display: none;
    }

    .quote-text .expanded-text {
        display: inline;
    }

    .testimonial-card.expanded .quote-text .collapsed-text {
        display: none;
    }

    .testimonial-card.expanded .quote-text .expanded-text {
        display: inline;
    }


    .toggle-btn {
        display: none;
    }
    #webtest{
      display: none;
    }
    #mobiletest{
      display: block !important;
    }
 
  }
  @media(max-width:945px){
    .product-card{
      width:250px;
    }
    .product-img-area{
      height: 180px;
    }
  }
  @media(max-width:880px){
    .product-img-area{
      height: 150px;
    }
    
    .power-container{
      padding: 0;
    }
    .power-grid{
      width: 100%;
      padding: 0 20px;
    }
  .power-tabs {
    display: flex;
    flex-wrap: nowrap;       /* IMPORTANT */
    overflow-x: scroll;        /* Enable horizontal scroll */
justify-content: flex-start;
     /* Not center */
    gap: 20px;
    padding: 10px 25px !important;
   
   
  }

  .power-tab {
    flex: 0 0 auto;   /* Prevent shrinking */
    white-space: nowrap; /* Prevent text breaking */
  }
  .power-tabs::-webkit-scrollbar {
  display: none;
}
   
  }
@media(max-width:850px){
  .commit-points{
    gap:40px ;
    padding: 0 20px;
  }

}
@media(max-width:800px){
  .badges{
    gap: 20px;
    width: 95%;
  }
  .ramesh-text h1{
    font-size: 36px;
  }
  .ramesh-container{
    margin: 0;
    
   

    width: 100%;
  }
  .certify{
    height: 100px;
  }
  .badge-1{
    height: 100px;
  }
  .badge-1 img{
    height: 50px;
  }
   .certify{
    height: 100px !important;
  }
  .podium{
    height: 24px;
  }
  .certification{
    padding-top: 50px;
  }
  .certification h2{
    margin-bottom: 40px;
  }
}
@media(max-width:768px){
  .certification h2{
    font-size: 38px;
  }
  .section-6-box2 h1{
    font-size: 38px;
  }

.slanted-section{
  padding-top: 0;
}
.slanted-section h2{
  font-size: 38px;
}
  .section-6-box2{
  
    padding: 30px;}
   .section-6-box2 p{
    font-size: 14px;
    max-width: 100%;
   
  }
  .vision-mission{
    margin-top: 150px;}
    .textss{
      gap: 25px;
    }
    .textss img{
      height: 75px;
    }
    .vision-mission-container{
      gap: 100px;
    }
    .form-side h2{
      font-size: 38px;
    }
    .partners-support-list li{
      font-size: 18px;
    }
    .commitment h2{
      font-size: 38px;
    }
    .commitment p{
      font-size: 14px;
    }
    .commit-points{
      gap: 20px;
    }
    .commit-points p{
      max-width: 100px;
    }
    .market-point{
      font-size: 16px;
    }
    .markets{
      padding: 100px 30px;
    }
    .markets-left h2{
      font-size: 38px;
    }
     .markets-left p{
      font-size: 14px;
    }
    .power-title{
      font-size: 38px;
    }
    .power-subtitle{
      margin: 15px;
    }
     .view-btn{
      font-size: 14px;
      padding: 8px 16px;
}
.section-7-box1,.section-7-box2{
  width: 100%;
 
}
.section-7{
  gap: 40px;
}

}
@media(max-width:700px){
  .commitment{
    padding: 50px 0;
  }
   .commitment h2{
    font-size: 36px;
  }
  .commitment p{
    font-size: 14px;
    max-width: 95%;
    margin: 0 auto;
  }
  .sidebar{
    display: none;
  }
  .form-side{
    padding: 0 15px;
  }
  .multi-select-box{
    padding-right: 25px;
  }
  .form-grid{
    grid-template-columns: 1fr ;
  }
   .content{
    padding: 40px 20px 20px 20px;
  }
  .policy-section{
    margin-bottom: 30px;
  }
  .content h1{
    font-size: 28px;}
    .content h2{
      font-size: 20px;
    }
     .content p{
      font-size: 14px;
    }
     .policy-section ul li{
      font-size: 14px;
    }
   .commit-points{
    gap: 20px;
    margin-top: 80px;
   }
   .commit{
    width: 120px;
   }
   .quote-text{
    height: auto;
   }
    
  .commit-points p{
    max-width: 100px;
    margin-top: 10px;
  }
}
@media(max-width:650px){
   .certification h2{
    font-size: 34px;
  }
  .certification{
    padding-top: 30px;
  }
  .markets-left img{
      height: 220px;
    }
    .form-side h2{
      font-size: 34px;
    }
     .partners-support-list li{
      font-size: 16px;
    }
   .vision-mission{
    margin-top: 100px;}
    .img-text h3{
      font-size: 36px;
    }
    .markets{
      padding: 80px 25px;
    }
    .markets-left h2{
      font-size: 34px;
    }
    .power-title{
      font-size: 34px;
    }
    .slanted-section h2{
      font-size: 36px;
    }
    
}
@media(max-width:595px){
  .badges{
    gap: 25px;
    width: 85%;
  }
  .multi-select-dropdown{
    max-height: 180px;
  }
  .toast-text {
    font-size: 12px;
    color: #383838;
    font-family: 'Gotham Book', sans-serif;
    line-height: 1.5;
  
  }
  .success-toast{
    padding: 8px 18px;
  }
   .badge-1 img{
    height: 35px;
  }
  .badge-1{
    height: 80px;}
   .certify{
    height: 80px !important;
  }
  .arrow-btn{
    height: 30px;
    width: 30px;
    font-size: 14px;
  }
  .testimonial-card{
    padding: 25px;
  }
  .quote-text .expanded-text{
    font-size: 12px !important;
  }
  .dots-container{
    margin-top: 20px;
  }
  .slanted-section h2{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .slanted-section::before{
    margin-top: 250px;
  }
  .quote-icon img{
    height: 30px;
  }
  .author-company{
    font-size: 14px;
    
  }
  .chip{
    font-size: 12px;
  padding: 3px 6px;
  }
  .contact-wrapper{
    padding: 20px 0 0;
  }
  .author-role{
    font-size: 14px;
  }
  .author-name{
    font-size: 14px;
  }
  .dot{
    height: 20px;
    width: 20px;
  }
  .card {
    font-size: 14px;
  }
  
  .podium{
    height: 20px;
  }
  .certification h2{
    font-size: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .vision-mission{
    padding: 0 20px;
  }
  .vision-mission-text{
    padding-right: 0;
  }
  .img-text h3{
    font-size: 32px;
  }
  .img-text p{
    font-size: 14px;
  }
  .textss{
    gap: 15px;
  }
  .textss img{
    height: 60px;
  }
  .commit-points{
    gap: 20px;
    padding: 0 10px;
  }
  .commit{
    width: 95px;
  }
  .commitment h2{
    font-size: 32px;
  }
  .power-tabs{
    gap: 15px;
    margin: 30px 0;
}
.power-tab{
    font-size: 13px;
    padding: 8px 14px;


  }
  .power-grid{
    gap: 15px;
  
  }
  .product-card{
    width: 150px;
  }
  .product-img-area{
   
    min-height: 170px;
  }
  .power-title{
    font-size: 32px;
  }
  .product-label{
    font-size: 12px;
  }.power-grid{
    gap: 10px;
    padding: 0 15px;
  }
  .ramesh-text h1{
    font-size:32px ;
  }
  .ramesh-text p{
    font-size: 14px;
  
}
.ramesh-brand a{
    font-size: 16px;
    padding: 8px 20px;
}
.ramesh-brand{
  gap: 30px;
}

  .section-6-box2 h1{
    font-size: 32px;
    text-align: center;
  }
  .section-6-box2 p{
    font-size: 14px;
    text-align: center;
  
}
.row .card{
  width: 45%;
  min-height: 100px;
  height: auto;
}
.section-7 .row{
  gap: 15px;
}
.form-side h2{
  font-size: 32px;
margin-bottom: 20px;}
  .form-group label{
    font-size: 14px;
    margin-bottom: 2px;
  }
  .form-group input,
  .form-group select{
    font-size: 14px;
  }
  .form-group input::placeholder{
    font-size: 14px;
  }
  .send-btn{
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media(max-width:575px){
  .mobile-menu-icon{
    margin: 0;
    font-size: 24px;
  }
  .ramesh-container{
    margin: 0;
  }
  .mobile-menu-links a {
  padding: 12px 20px;
  font-size: 16px;
}
.mobile-menu{
  width: min(250px,80vw);
}
}
@media(max-width:525px){
  .markets-left img{
    width: calc(100% - 20px); /* 100% width minus 10px on each side */
    height: auto; /* Scales proportionally */
    display: block;
    margin: 0 10px; /* 10px left and right gap */
  }
   .markets-right{
    gap: 15px;
   
   }
  .section-6-box2{
    padding: 25px 25px;
    width: 92%;
  }
  .market-point{
    font-size: 14px;
  }
  .markets-left h2{
    font-size: 32px;
  }
  #section-6{
    padding: 40px 20px;
  }
}
@media(max-width:480px){
  .ramesh-container{
    padding: 0 15px;
  }
  .product-img-area{
    min-height: 140px;
  }
  .product-card{
    width: 120px;
    min-width: 180px;
  }
  .section-6-box2{
    width: 95%;
  }
  .power-tabs{
    gap: 15px;
  
    margin: 20px 0;
    padding: 0 6px;
}
.form-grid{
  grid-template-columns: 1fr;
}
.form-side{
  padding: 0 20px;
}



.power-tab{
  padding: 8px 10px;
}}
@media(max-width:475px){
  .commit{
    width: 88px;
  }
  .commit-points{
    margin-top: 50px;
    padding: 0 8px;
    gap: 18px;
  }

  .markets{
    padding: 60px 20px;
  }
  .markets-right{
    gap: 10px;
  }
  .market-container{
    gap: 30px;
  }

}
@media(max-width:420px){
  .badges{
    gap: 20px;
    width: 95%;
  }
  .badge{
    padding: 0;
  }
   .img-text h3{
    font-size: 30px;
  }
  .slanted-section::before{
   margin-top: 280px;
  

}

  .img-text p{
    font-size: 14px;
  }
  .commit{
width: 78px;
  }
  .commit p{
font-size: 12px;
  }
  .textss{
    gap: 15px;
  }
  .textss img{
    height: 50px;
  }
  .section-6-box2 h1{
    font-size: 28px;
  }
  .section-6-box2 p{
    font-size: 14px;
  }
  .section-6-box2{
    width: 100%;
    padding: 20px;
  }
  .slanted-section h2{
    font-size: 28px;
  }
}
@media(max-width:400px){
  .commit-points{
    gap: 15px;
    padding: 0 15px;
  }
  .form-side h2{
    font-size: 28px;
  }
  .form-side{padding: 0 12px;}
  .ramesh-text h1{
    font-size: 27px;
  }
  .form-group input, .form-group select, .form-group textarea{
    padding: 8px ;
  }
  .multi-select-box{
    padding: 6px 30px 6px 8px;
  }

  .markets-left h2{
    font-size: 28px;
  }
  .product-img-area{
    min-height: 120px;
  }
  .product-card{
    width: 120px;
    min-width: 150px;
  }
  .power-title{
    font-size: 28px;
  }

}
@media(max-width:375px){
   
  .form-side{padding: 0 8px;}
  
  .form-group input, .form-group select, .form-group textarea{
    padding: 8px 4px ;
  }
  .multi-select-box{
    padding: 6px 25px 6px 4px;
  }
  .chip{
    font-size: 11px;
  }
}