/* Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth; /* Makes scrolling smooth for anchor links */
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

.equalPaddingT{
  padding-top:5rem;
}
.equalPaddingB{
  padding-bottom:5rem;
}
.mt-5{margin-top:50px;}
.text-center{text-align: center;}
.justify-content-center{justify-content: center;} 

.row .col-lg-12 {
  width: 100%;
}

.row .col-lg-6 {
  width: 49%;
}
.row label{display: block;padding-bottom: 5px;}
.row input, .row select{height: 50px;border: 1px solid #d1d5db;width: 100%;
  border-radius: .5rem;padding-left: 15px;}
  .row .form-floating{padding-bottom: 15px;}
  .d-flex{display: flex;}
  .col-gap{column-gap: 20px;}
  button{background:#dc2626;width: 100%;border: none;font-size: 16px; color: #fff;margin-bottom:15px }

  .form-wrap-title{padding-bottom: 30px;
  margin-bottom: 30px;}
  .form-wrap-title h3{font-size: 22px;}
    .form-wrap-title p{font-size: 15px;}

  .logo-slider {
    overflow: hidden;
    width: 100%;
    background: #fff;
}
.brand-color {
  background-color: #b62d31;
}
.gmileaders img{width: 100%;}
.whiteline-v{position: relative;}
.whiteline-v::after {
  content: "";
  width: 9px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 0;
}
.listabannerWrap{width:100%;margin: auto;padding:4rem}
.listviewWrap{
    width: 100%;
    height: 100%;
    display: flex;
  align-items: center;
}

.listviewWrap h2{
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  padding-bottom: 16px;
}
.listabanner-img{
  width: 460px;
  margin: auto;
}
.image-row {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.image-row img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

#nominate-form {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.highlight {
    animation: blinkForm 1.2s ease-in-out 3;
    background-color: #fff6d9 !important;
    box-shadow: 0 0 0 3px #ffb703 !important;
}

@keyframes blinkForm {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.tnctext{  position: relative;}
.tnctext span{
  position: absolute;
  right: 0;
}

.page-wrapper {
  min-height: 100vh;
  background: white;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(220, 38, 38, 0.5);
}
.btn-secondary {
  background: white;
  color: #1f2937;
  border: 2px solid #e5e7eb;
}
.btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}
.btn-white {
  background: white;
  color: #dc2626;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}
.btn-white:hover {
  background: #f3f4f6;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
    margin-bottom: 30px;
}
.badge-red {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.badge-yellow {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
}
.badge-green{
  background-color: #16a34a;
  border: 1px solid #16a34a;
  color: #fff;

}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    font-family: Arial, sans-serif;
    padding: 0 100px;
}

.info-card {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 20px;
    margin: 0;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* List style */
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
}

.info-card li::before {
    content: "\f058";                  /* Unicode for check-circle */
    font-family: "Font Awesome 7 Free"; /* FA7 new family */
    font-weight: 400;                  /* Regular style */
    font-style: normal;
    font-variant: normal;
    position: absolute;
    left: 0;
    top: 06;
    font-size: 20px;
    line-height: 1;
    color: #2563eb;
}




/* Color Themes */
.blue {
    background: #f3f8ff;
    border: 1px solid #cfe0ff;
}
.blue .icon,
.blue li::before { color: #2563eb; }

.blue .icon{background-color: #2563eb;}
.green {
   
    border: 1px solid #c8f5d4;
}
.green .icon{background-color: #16a34a;}
.green .icon,
.green li::before { color: #16a34a;}

.orange {
    background: #fff8ec;
    border: 1px solid #fde1b2;
}
.orange .icon{background-color: #d97706;}
.orange .icon,
.orange li::before { color: #d97706; }

.purple {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
}
.purple .icon{background-color: #9333ea;}
.purple .icon,
.purple li::before { color: #9333ea;}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  color: white;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .urgency-content {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc, white, #f8fafc);
  padding: 4rem 0 5rem;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #111827;
}
.hero-title .text-red {
  display: block;
  color: #dc2626;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
}
.text-red {
  color: #dc2626;
}
.text-amber {
  color: #b45309;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.highlight-box {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 2px solid #fcd34d;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.highlight-box p {
  color: #111827;
  font-weight: 600;
  margin: 0;
}
.award-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.form-container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
}
.zoho-form-container {
  min-height: 600px;
  display: flex;
  justify-content: center;
}

/* Trusted Section */
.trusted-section {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.trusted-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0.6;
}
.trusted-logos span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
}

/* Economic Times Section */
.et-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fffbeb, #fef3c7, #ffedd5);
}
.et-card {
  max-width: 64rem;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 2px solid #fcd34d;
}
.et-header {
  background: linear-gradient(90deg, #d97706, #ea580c);
  padding: 1.5rem 2rem;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
.et-body {
  padding: 3rem;
}
.et-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
}
.et-description {
  font-size: 1.125rem;
  color: #374151;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.et-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media all and (max-width: 768px) {
  .listabanner-img{width: 100%}
  .listview-Content{padding-bottom: 40px;text-align: center;}
  .listview-Content h2{  font-size: 2.25rem;}
}
@media (min-width: 768px) {
  .et-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
}
.et-feature {
  background: linear-gradient(135deg, #fffbeb, white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #fef3c7;
  text-align: center;
}
.et-feature span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.et-feature h4 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.et-feature p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: white;
}
.benefits-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.benefit-red {
  background: linear-gradient(135deg, #fef2f2, white);
  border-color: #fecaca;
}
.benefit-yellow {
  background: linear-gradient(135deg, #fefce8, white);
  border-color: #fef08a;
}
.benefit-blue {
  background: linear-gradient(135deg, #eff6ff, white);
  border-color: #bfdbfe;
}
.benefit-green {
  background: linear-gradient(135deg, #f0fdf4, white);
  border-color: #bbf7d0;
}
.benefit-purple {
  background: linear-gradient(135deg, #faf5ff, white);
  border-color: #e9d5ff;
}
.benefit-orange {
  background: linear-gradient(135deg, #fff7ed, white);
  border-color: #fed7aa;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.bg-red {
  background: #dc2626;
  color: white;
}
.bg-yellow {
  background: #eab308;
  color: white;
}
.bg-blue {
  background: #2563eb;
  color: white;
}
.bg-green {
  background: #16a34a;
  color: white;
}
.bg-purple {
  background: #9333ea;
  color: white;
}
.bg-orange {
  background: #ea580c;
  color: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.benefit-card p {
 /* color: #6b7280;
  margin: 0;*/
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

/* Managers Section */
.managers-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.managers-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .managers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-managers{
  width: 400px;
  margin: auto;
}
.manager-card {
  background: white;
  padding: 16px;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
    margin-bottom: 30px;
}
.manager-icon {
  width: 2.5rem;
  height: 2.5rem;
  /*background: #fef2f2;*/
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.manager-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.manager-card p {
  color: #4B5563;
  margin: 0;
}

/* CDI Section */
.cdi-section {
  padding: 5rem 0;
  background: white;
}
.cdi-card {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 1rem;
  padding: 3rem;
  color: white;
}
.cdi-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .cdi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cdi-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cdi-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.cdi-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cdi-item {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cdi-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cdi-stat {
  text-align: center;
  margin-bottom: 1.5rem;
}
.cdi-stat:last-child {
  margin-bottom: 0;
}
.cdi-stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cdi-stat p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Impact Section */
.impact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.impact-grid {
  display: grid;
  gap: 2rem;
}
@media all and (max-width: 768px) {
  .managers-grid {
  display: block;
}
.feature-managers {
  width: 100%;
}

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



}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.impact-card:hover {
  border-color: #fecaca;
}
.impact-value {
  font-size: 3rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}
.impact-card p {
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

/* Act Now Section */
.act-now-section {
  padding: 5rem 0;
  background: white;
}
.act-now-card {
  background: linear-gradient(135deg, #fefce8, #ffedd5);
  border: 2px solid #fcd34d;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.act-now-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin: 1rem 0;
}
.act-now-card > p {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
}

.act-now-features {
 display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
/*@media (min-width: 768px) {
  .act-now-features {
    grid-template-columns: repeat(2, 1fr);
  }
}*/
.act-now-feature {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #111827;
}
.act-now-feature small {
  font-weight: 400;
  color: #6b7280;
}
.background-color-green{background: #ecfdf5;border: 1px solid #16a34a;}

.how-it-work-features-wrap {
  box-shadow: 2px 2px 6px 0px rgba(209.07167358398436, 206.98095407407448, 206.98095407407448, 0.54);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 12px 12px 12px 12px;
    border-radius: 10px 10px 10px 10px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 36px;
  position: relative;
  background-color: #fff;
    text-align: left;
}
.how-it-work-icon{width:100px;padding: 20px;background-color: #ecfdf5;
  border-radius: 50px;
}
.how-it-work-feature h3{padding-bottom:10px;}


.gmtw-table-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.gmtw-table {
    width: 100%;
    border-collapse: collapse;
}

.gmtw-table th,
.gmtw-table td {
    border: 1px solid #d9dfe6;
    padding: 24px 20px;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
}

.gmtw-table thead th {
    background: #e02424;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.gmtw-table th.steps-col {
    width: 12%;
}

.gmtw-table td.row-title {
    font-weight: 700;
    width: 12%;
}

.gmtw-table strong {
    font-weight: 700;
}

.gmtw-table .highlight {
    color: #e02424;
    font-weight: 700;
}



/* Final CTA */
.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  text-align: center;
}
.final-cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.final-cta-section > .container > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.contact-text {
  font-size: 0.875rem !important; 
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2rem;
}
.contact-text a{color: #fff !important}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 
}
@media screen and (max-width: 768px){
   .how-it-work-features-wrap{display: block;  margin: 0 !important;}
  .gmtw-table{
    overflow-x: scroll;
  display: block;
  }
  .info-grid{
      padding: 0 100px;
        grid-template-columns: repeat(1, 1fr);
  }
  .act-now-card, .cdi-card, .et-body{padding: 1rem}
}
.footer h3 {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}
