/* 
 * MR Industries Website Styles
 * A modern, responsive website for a textile manufacturing company
 */

/* ===== Base Styles ===== */






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;

    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    colors: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Layout & Containers ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;

}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}


        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 70px;
            position: relative;

            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }





.section-intro {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;

    font-size: 1.125rem;
}

.divider {
    width: 6rem;
    height: 0.25rem;

    margin: 1.5rem auto;
}



/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}



.btn-primary:hover {

    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {

    border: 2px solid white;
    colors: white;
}

.btn-secondary:hover {

    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}


/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    colors: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgb(0 0 0 / 90%) 0%, rgba(10, 25, 41, 0.7) 100%);
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.typewriter {
    display: inline-block;
    position: relative;
}

.typewriter::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-accent);
    animation: blink 0.8s infinite;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-buttons .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 1.8s forwards;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(20px);
}

.btn-primary {
    background: var(--gradient-accent);
    colors: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    colors: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.btn-primary:hover {
      background: linear-gradient(45deg, #1e90ff, #007bff);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-colors: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    colors: rgba(255, 255, 255, 0.8);
    z-index: 3;
    opacity: 0;
    animation: 
        fadeIn 0.5s ease 2.5s forwards,
        bounce 2s ease 3s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Typewriter animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Decorative elements */
.floating {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #ff6b00;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid #ff6b00;
    bottom: -130px;
    left: -75px;
    animation: rotateReverse 25s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Media queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-buttons .btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 24px;
    }

    .circle, .triangle {
        display: none;
    }
    
    .scroll-indicator {
        font-size: 2rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        width: 90%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        font-size: 1.8rem;
        bottom: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 95%;
    }
}


/* ===== Products Section ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {

    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-content p {
    colors: var(--text-muted);
    margin-bottom: 1rem;
}

.product-link {
    colors: var(--denim-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.product-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* ===== Process Section ===== */
/* ===== Process Section (Enhanced) ===== */



/* ===== Infrastructure Section ===== */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.counter-item {

    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    colors: var(--denim-light);
    display: inline-block;
}

.counter-unit {
    font-size: 1.5rem;
    font-weight: 600;
    colors: var(--denim-light);
    display: inline-block;
    margin-left: 0.25rem;
}

.counter-label {
    colors: var(--text-muted);
    margin-top: 0.5rem;
}

.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chart-item {

    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.chart-value {
    font-weight: 700;
    colors: var(--denim-light);
}

.progress-bar {
    width: 100%;
    height: 1rem;

    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;

    border-radius: 9999px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* ===== Quality Section ===== */








/* ===== Partners Section ===== */
.partner-feature {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.partner-feature h3 {
    colors: var(--denim-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.partner-logo {

    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo-placeholder {
    width: 100%;
    height: 4rem;

    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    colors: var(--text-muted);
    font-weight: 600;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {

    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-sm);
    display: none;
}

.form-message.success {

    colors: #065f46;
    display: block;
}

.form-message.error {

    colors: #b91c1c;
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    colors: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--cotton-dark);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-colors: var(--denim-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    colors: var(--denim-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-items {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    colors: var(--denim-light);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.footer {
       background: linear-gradient(180deg, #ffffff, #bfc3c9);
    border-top: 1px solid var(--soft-border);
    color: #000000;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.footer-links ul li a{
  color: #000000;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: black;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {

    transform: translateY(-3px);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    colors: var(--denim-light);
    padding-left: 0.5rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
}

.footer-contact-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reveal-left,
.reveal-right,
.reveal-bottom {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-left.active {
    animation: slideInLeft 0.8s ease forwards;
}

.reveal-right.active {
    animation: slideInRight 0.8s ease forwards;
}

.reveal-bottom.active {
    animation: fadeInUp 0.8s ease forwards;

}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation delays based on data-delay attribute */
[data-delay="50"] { animation-delay: 0.05s; }
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="150"] { animation-delay: 0.15s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="250"] { animation-delay: 0.25s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="350"] { animation-delay: 0.35s; }
[data-delay="400"] { animation-delay: 0.4s; }


:root {
  --primary-colors: #0a0a0a;         /* Pure black base */
  --denim-light: #afafaf;           /* Orange accent colors */
  --accent-colori: #0A1A2F;         /* Darker orange */
  --secondary-colors: #1a1a1a;       /* Dark gray background */
  --text-darki: #f0f0f0;            /* Light text */
  --text-lighti: #888888;           /* Medium gray text */
  --border-radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.7);
  --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  colors: var(--text-lighti);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}


.view-btn {
  background: var(--gradient-accent);
  colors: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgb(0 151 255 / 22%);
}

.view-btn:hover {
  transform: translateY(-3px);
   box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.view-btn i {
  transition: transform 0.3s;
}

.view-btn:hover i {
  transform: translateX(5px);
}

/* Animated Background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 58, 0.1));
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {

  border-radius: var(--border-radius);
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  overflow-y: auto;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 140, 58, 0.2);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(14deg, #2d2d2d, #000000);
  colors: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h2 {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-btn {
  background: none;
  border: none;
  colors: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-content {
  padding: 2rem;


}

/* Quality Modal Specific Styles */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.modal-section h3 {

  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-section ul {
  list-style: none;
  padding-left: 0;
}

.modal-section li {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  position: relative;
  padding-left: 20px;
}

.modal-section li::before {
  content: "✓";
  position: absolute;
  left: 0;

  font-weight: bold;
}

.metric {
  margin-bottom: 1rem;
}

.metric-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;

}

.metric-bar {
  background: #333;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.metric-fill {
  height: 100%;
  background: var(--gradient-accent);
  transition: width 1s ease;
}

.metric-value {
  font-weight: bold;
  colors: WHITESMOKE;
}

.process-flow {
  margin-top: 2rem;
}

.process-flow h3 {
  colors: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: var(--border-radius);
  position: relative;
  border: 1px solid rgba(255, 140, 58, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  colors: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.flow-arrow {
  font-size: 1.5rem;
  colors: #ff8c3a;
  font-weight: bold;
}

/* Compliance Modal Styles */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.compliance-category h3 {
  colors: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.standard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #1e1e1e;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 140, 58, 0.1);
}

.standard-status.active {
  background: var(--gradient-accent);
  colors: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.audit-timeline h3 {
  colors: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--gradient-accent);
  border-radius: 50%;
}

.timeline-date {
  font-weight: bold;
  colors: WHITESMOKE;
  margin-bottom: 5px;
}

.timeline-content h4 {
  margin-bottom: 5px;
  colors: #f0f0f0;
}

/* Certifications Modal Styles */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.certificate-card {
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 140, 58, 0.1);
}

.certificate-card:hover {
  border-colors: #ff8c3a;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.certificate-icon {
  font-size: 2.5rem;
  colors: linear-gradient(45deg, #007BFF, #00BFFF);
  margin-bottom: 1rem;
}

.certificate-card h3 {
  colors: linear-gradient(45deg, #007BFF, #00BFFF);
  margin-bottom: 0.5rem;
}

.cert-description {
  colors: var(--text-lighti);
  margin-bottom: 1rem;
}

.cert-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  colors: var(--text-lighti);
}

.download-cert {
  background: var(--gradient-accent);
  colors: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.download-cert:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

/* Sustainability Modal Styles */
.sustainability-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--gradient-accent);
  colors: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.green-initiatives h3 {
  colors: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.initiative-item {
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 140, 58, 0.1);
}

.initiative-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-colors: #ff8c3a;
}

.initiative-icon {
  font-size: 2rem;
  colors: #00a7db;
  margin-bottom: 1rem;
}

.initiative-item h4 {
  colors: #ffffff;
  margin-bottom: 0.5rem;
}

.initiative-item p {
  colors: var(--text-lighti);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.progress-bar {
  background: #333;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background:var(--gradient-accent);
  transition: width 1s ease;
}

.environmental-goals h3 {
  colors: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.goals-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  background: #1e1e1e;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 140, 58, 0.1);
}

.goal-item:hover {
  border-colors: #ff8c3a;
  transform: translateY(-3px);
}

.goal-year {
  background:  var(--gradient-accent);
  colors: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.goal-content h4 {
  colors: #ffffff;
  margin-bottom: 0.5rem;
}

.goal-content p {
  colors: var(--text-lighti);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(50px);
  animation: revealBottom 0.8s ease forwards;
}

.reveal-bottom[data-delay="100"] {
  animation-delay: 0.1s;
}

.reveal-bottom[data-delay="200"] {
  animation-delay: 0.2s;
}

.reveal-bottom[data-delay="300"] {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes revealBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
 

  .modal {
    width: 95vw;
    margin: 20px;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .goal-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .sustainability-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
 

  .sustainability-stats {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp button (paste into your CSS) */
.whatsapp-float {
  position: fixed;
  right: 20px;                /* distance from right edge */
  bottom: 20px;               /* distance from bottom edge */
  width: 60px;
  height: 60px;
  z-index: 99999;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;           /* keeps the image clipped to circle */
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 180ms cubic-bezier(.2,.9,.2,1), box-shadow 180ms;
  -webkit-tap-highlight-color: transparent;
  background: white;          /* subtle background so PNG/transparent icons look good */
}

/* Image inside the anchor - keep it fully filling the circle */
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* preserves aspect and fills circle */
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
}

/* Hover & focus */
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.32);
  outline: none;
}

/* Accessible focus ring for keyboard users */
.whatsapp-float:focus-visible {
  box-shadow: 0 0 0 6px rgba(37,211,102,0.14), 0 18px 38px rgba(0,0,0,0.28);
}

/* Gentle attention animation (optional). Remove .no-bounce class to enable */
@keyframes _wa-breath {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.whatsapp-float:not(.no-bounce) {
  animation: _wa-breath 6s ease-in-out infinite;
}

/* Slightly smaller on very small screens */
@media (max-width: 420px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* If you want to hide it on desktop and show only on mobile:
   add .hide-desktop to the element or change the rule below */
@media (min-width: 900px) {
  /* .whatsapp-float.hide-desktop { display: none !important; } */
}
