/* Introduction section */
/* Intro Section */
.intro {
    background: #f4f7fb;
    padding: 60px 20px;
}

.intro h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 20px;
    position: relative;
}

/* Underline effect */
.intro h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff9800;
    display: block;
    /*margin: 10px auto 0;*/
}

.intro p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (min-width: 768px) {
    .intro {
        padding: 80px 20px;
    }

    .intro h2 {
        font-size: 2.4rem;
    }

    .intro p {
        font-size: 1.15rem;
    }
}

/*What is Canvas Tarpaulin */
.canvas-section {
    padding: 50px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Image */
.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text */
.text-box {
    flex: 1;
}

.text-box h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.text-box p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.text-box ul {
    padding-left: 20px;
}

.text-box li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .image-box, .text-box {
        width: 100%;
    }
}

/*Types of Canvas Tarpaulins*/

  
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .card {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        /*box-shadow: 0 4px 12px rgba(0,0,0,0.08);*/
        transition: 0.3s ease;
        height: 100%;
        text-align: left;
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    .card h2 {
        color: #2b6cb0;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .list-title {
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
        font-size: 14px;
    }

    ul {
        padding-left: 18px;
    }

    ul li {
        font-size: 14px;
        margin-bottom: 6px;
        color: #444;
    }

    /* Medium screen optimization */
    @media (max-width: 768px) {
        h1 {
            font-size: 26px;
        }

        .card {
            padding: 18px;
        }
    }

    /* Mobile optimization */
    @media (max-width: 480px) {
        h1 {
            font-size: 22px;
        }

        .card h2 {
            font-size: 18px;
        }
    }



/*Canvas Tarpaulin Features*/

.tarpaulin-section {
  padding: 60px 20px;
  background: #f9f9f9;
}


.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #000000;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

.feature-card {
  text-align: center;
  padding: 20px;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Table */
.table-wrapper {
        max-width: 900px;
        margin: 20px 0 20px 0px; /* left spacing */
        overflow-x: auto;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    th, td {
        padding: 14px 16px;
        text-align: left;
    }

    th {
        background: #0d3b66;
        color: #ffffff;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    tr {
        border-bottom: 1px solid #e0e0e0;
    }

    tr:nth-child(even) {
        background: #f9fbfd;
    }

    tr:hover {
        background: #eef5ff;
        transition: 0.3s;
    }

    td {
        color: #333;
        font-size: 15px;
    }

    td:first-child {
        font-weight: bold;
        color: #0d3b66;
    }

    /* Mobile Responsive */
    @media (max-width: 600px) {

        table {
            border: 0;
            min-width: 100%;
        }

        thead {
            display: none;
        }

        tr {
            display: block;
            margin-bottom: 15px;
            border-bottom: 2px solid #ddd;
        }

        td {
            display: block;
            text-align: right;
            padding: 10px;
            position: relative;
        }

        td::before {
            content: attr(data-label);
            position: absolute;
            left: 10px;
            width: 50%;
            text-align: left;
            font-weight: bold;
            color: #0d3b66;
        }
    }

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }
}


/*Applications of Canvas Tarpaulin*/
/* Section */
.section {
    max-width: 1100px;
    margin: 50px auto;
    /*padding: 20px;*/
}

/* Title */
.section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0077ff;
    display: block;
    margin: 10px 1px 0;
}

/* Layout */
.content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Column */
.column {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-left: 4px solid #0077ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Subheading */
.column h3 {
    margin-top: 0;
    color: #0077ff;
}

/* List */
.column ul {
    padding-left: 18px;
}

.column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Highlight text */
.highlight {
    margin-top: 15px;
    padding: 12px;
    background: #eef5ff;
    border-radius: 6px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}


/*Why Choose Ravi Tarpaulins*/

.subtitle {
      text-align: left;
      margin-bottom: 25px;
      color: #555;
    }

    .feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .icon {
      font-size: 18px;
      margin-right: 10px;
      color: #2c3e50;
    }

    .feature p {
      margin: 0;
    }

    .industries ul {
      list-style: none;
      padding: 0;
    }

    .industries li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .industries li::before {
      content: "✔";
      margin-right: 10px;
      color: #2c3e50;
    }

    @media (max-width: 600px) {
      .feature {
        flex-direction: row;
      }
    }


 /*Frequently Asked Questions*/

.faq-container {
    max-width: 800px;
    margin: 20px 0 20px 207px;
    background: #fff;
    /*padding: 20px;*/
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-title {
    text-align: left;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 15px 15px;
}

.faq-answer p {
    margin: 0;
    color: #555;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
    .faq-question {
        font-size: 14px;
        padding: 12px;
    }

    .faq-container {
        padding: 15px;
    }
}


/*Get High-Quality Canvas Tarpaulin Today*/


    .hero {
        background: #0d3b66;
        color: white;
        padding: 50px 20px;
        border-radius: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
        color: white;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.6;
        color: white;
    }

    /*.features {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        gap: 20px;
    }

    .feature-box {
        flex: 1 1 300px;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
    }

    .feature-box h3 {
        margin-bottom: 10px;
        color: #0d3b66;
    }*/

    .cta {
        margin-top: 30px;
        text-align: center;
    }

    .cta a {
        display: inline-block;
        margin: 10px;
        padding: 12px 20px;
        background: #f77f00;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
    }

    .cta a:hover {
        background: #d65a00;
    }

    .contact {
        margin-top: 15px;
        font-size: 18px;
        color: #333;
        text-align: center;
    }

    /* Responsive *
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 24px;
        }

        .hero p {
            font-size: 16px;
        }
    }


    /* product img*/
 

/* tp Product Grid */
/* PRODUCT GRID */
.tp-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px; /* space below grid */
}

.tp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px; /* inner spacing */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px; /* smooth corners */
}

.tp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* TITLE */
.tp-title {
  text-align: center;
  margin: 50px 0 25px; /* more breathing space */
  padding: 10px;
  font-size: 28px;
  color: #333;
}

/* COLOR GRID */
.tp-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tp-color-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  margin: 5px; /* small outer spacing */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.tp-color-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tp-color-card:hover {
  transform: scale(1.05);
}

.tp-color-text {
  margin-top: 5px;
  padding: 5px;
  font-weight: bold;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .tp-title {
    font-size: 22px;
    margin: 30px 0 15px;
  }
}