.granite-factory {
    padding: 40px 0;
}
.about-team img{width: 180px; height: auto; border-radius:50%; box-shadow: 0 4px 12px rgba(0,0,0,0.1);}
.granite-type-title {
    margin: 0 0 8px;
    color: #30373f;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
}

/* Headings */
.granite-factory h2 { 
    font-size: 24px; 
    line-height: 1.4; 
    margin-bottom: 10px;
    font-weight: 700;
}

.granite-factory h3 { 
    font-size: 20px; 
    line-height: 1.3; 
    margin-bottom: 8px;
    font-weight: 600;
}

/* Paragraph Styling */
.granite-factory p b, 
.granite-factory p a, 
.granite-factory p strong { 
    color: #000;
    font-weight: 500;
}

/* List Styling */
.granite-factory ul { 
    padding-left: 18px; 
    list-style-type: disc; /* डॉट्स जोड़ने के लिए */
}

.granite-factory ul li { 
    font-size: 15px; 
    color: #333; 
    line-height: 1.5;
    margin: 5px 0;
    padding: 2px 5px;
    list-style: square;
}

/* Links, Bold, Strong, Italic */
.granite-factory a, 
.granite-factory strong, 
.granite-factory b, 
.granite-factory em { 
    font-size: 15px; 
    color: #333; 
    text-decoration: none;
    font-weight: normal;
    line-height: 1.5;
    margin: 4px 0;
    padding: 2px 5px;
}

.granite-factory a:hover { 
    color: #e6af5d; 
    text-decoration: underline;
}

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) {
    .granite-factory h2 { font-size: 22px; }
    .granite-factory h3 { font-size: 18px; }
    .granite-factory ul li, 
    .granite-factory a, 
    .granite-factory strong, 
    .granite-factory b, 
    .granite-factory em { font-size: 14px; }
}

@media (max-width: 768px) {
    .granite-factory { padding: 30px 0; }
    .granite-factory h2 { font-size: 20px; }
    .granite-factory h3 { font-size: 17px; }
    .granite-factory ul li { font-size: 14px; line-height: 1.4; padding-left: 15px; }
}

@media (max-width: 480px) {
    .granite-factory { padding: 20px 0; }
    .granite-factory h2 { font-size: 18px; margin-bottom: 8px; }
    .granite-factory h3 { font-size: 16px; margin-bottom: 6px; }
    .granite-factory ul { padding-left: 15px; }
    .granite-factory ul li { font-size: 13px; line-height: 1.3; padding-left: 10px; }
    .granite-factory a, 
    .granite-factory strong, 
    .granite-factory b, 
    .granite-factory em { font-size: 13px; }
}


.granite-section {
    padding: 0;
    background-color: #F6E5CF;
}

.granite-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.granite-content {
    padding: 20px;
}

.granite-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.granite-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .granite-content {
        padding: 15px;
    }
    .granite-content h2 {
        font-size: 24px;
    }
    .granite-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .granite-content {
        padding: 10px;
    }
    .granite-content h2 {
        font-size: 22px;
    }
    .granite-content p {
        font-size: 13px;
    }
}


.journey-section {
    padding: 40px 0 10px;
}

h2.journey-title {
    margin-bottom: 50px;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: "";
    position: absolute;
    width: 2px;
    background: #303030;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-date {
    order: 2;
}

.timeline-date {
    width: 45%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 0px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.timeline-item:nth-child(even) .timeline-content {
    order: 2;
    text-align: left;
}
.timeline-item:nth-child(odd) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: px;
        margin-bottom: 30px;
    }
    .timeline-item:nth-child(odd) .timeline-date {
        order: 1;
    }
    .timeline-item .timeline-date {
        width: 100px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
        order: 1;
    }
    .timeline-item .timeline-content {
        width: 90%;
        text-align: center;
        padding: 15px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        text-align: center;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        order: 2;
        text-align: center;
    }
}



.factory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 30px); /* Reduced gap */
    justify-content: center;
    margin-top: 20px;
    padding: 10px 0;
}

.factory-item {
    flex: 1 1 clamp(170px, 12%, 200px); /* Flexible width */
    max-width: 280px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}

.factory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.factory-icon img {
    width: 40px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.factory-number {
    color: #30373f;
    line-height: 1.3;
    margin: 7px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1199px) {
    .factory-item {
        flex: 1 1 45%;
        max-width: 100%;
    }
}

@media (max-width: 545px) {
    .factory-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


.delivery-section {
    margin: auto;
    text-align: center;
  }
  
  .delivery-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .feature-box {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    text-align: center;
  }
  .feature-box:first-child {
    border-left: none;
    padding-left: 0;
  }
  .feature-box h3 {
      color: #30373f;
      line-height: 1.3;
      margin: 7px 0;
      font-size: 18px;
      font-weight: 600;
  }
  .feature-box p{line-height:1.3;}

 
  .fluted-section {
    padding: 40px 0;
  }
  
  .fluted-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Desktop: Keep in one line */
    gap: 20px;
  }
  
  .fluted-text {
    font-size: 21px;
    font-weight: 600;
    color: #30373f;
    flex: 1; /* Allow text to take remaining space */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .fluted-text .highlight {
    border-left: 6px solid rgb(139, 111, 78);
    padding-left: 10px;
    margin-left: 10px;
    font-weight: 500;
    color: #30373f;
  }
  
 .fluted-section .btn-six{margin-top: 0;}
  
  @media (max-width: 768px) {
    .fluted-wrapper {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .fluted-text {
      white-space: normal;
      margin-bottom: 12px;
    }
  }
  
  .flow-container-step {
    background: #ffffff;
    border-left: 6px solid rgb(139, 111, 78);
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgb(139, 111, 78,0.3);
    }
    .flow-container-arrow {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    color: #30373f;
    }
    
  
    .channel-box .icon {
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        font-size: 32px;
    }
    
    .channel-box .channel {
        color: #30373f;
        line-height: 1.3;
        margin: 7px 0;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }