/*
    Do's and Dont's section
*/
.dnd-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0px 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .dnd-title {
    color: #0066b3;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dnd-mob-title {
    display: none;
  }
  .dnd-table {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .table-left {
    width: 100%;
    height: auto;
    background: #f2f2f2;
    border-radius: 10px;
  }
  .table-right {
    width: 100%;
    height: auto;
    background: #f2f2f2;
    border-radius: 10px;
  }
  .table-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .dnd-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-content: center;
    align-items: start;
    gap: 8px;
  }
  .dnd-content img {
    width: 24px;
    height: 24px;
  }
  .dnd-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #58595b;
    padding: 0 !important;
  }
  /*
    Installation of Pipes section
*/
.ins-container {
    position: relative;
    width: 100%;
    height: auto;
    padding: 60px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #12487b;
  }
  
  .ins-top {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
  }
  
  .ins-contentTop {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: start;
  }
  
  .ins-contentTop.active-button {
    color: white;
    background-color: #000;
  }
  .ins-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: #fff100;
  }
  .ins-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    color: #ffffff;
  }
  
  .ins-tabs {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .ins-tabs button {
    width: 100%;
    height: 44px;
    background-color: transparent;
    border: 1px solid #ffff !important;
    border-radius: 6px;
    border: none;
    outline: none;
  }
  .ins-tabs p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    margin: 0;
    padding: 0;
    text-wrap: nowrap;
  }
  .ins-tabs button .inactive-button {
    background: #12487b;
    color: #000;
    border: 1px solid white;
    border-radius: 6px;
  }
  .ins-tabs button.inactive-button p {
    color: #fff !important;
  }
  .ins-tabs button.active-button {
    background-color: #fff !important;
  }
  .ins-tabs button.active-button p {
    color: #12487b !important;
  }


  

 /* gemini css */

  /* General Body Styling */
  body {
    font-family: 'Poppins', sans-serif; /* A bit more modern for titles */
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ee 100%); Subtle gradient background */
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    /* display: flex; */
    flex-direction: column;
}
  /* Main Content Container */
  .main-content {
    flex-grow: 1; /* Allows main content to take available space */
    max-width: 1300px; /* Slightly wider for tabs */
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    gap: 40px; /* Space between the tab container and other cards */
}

/* Tab Container Styling */
.tab-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    overflow: hidden; /* For smooth tab content transitions */
}

.tab-container h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tab-container h2 i {
    color: #3498db;
    font-size: 1.2em;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    outline: none; /* Remove focus outline */
}

.tab-button:hover {
    color: #3498db;
    background-color: #f8f8f8;
}

.tab-button.active {
    color: #3498db;
    border-bottom: 3px solid #3498db; /* Active tab indicator */
    background-color: #f0f4f8; /* Slightly different background for active */
    box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.5s ease-out; /* Fade-in animation */
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card Styling for Tables (Non-tabbed, like Cure Data) */
.table-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    margin-top: 20px; /* Space from previous content */
}

.table-card:hover {
    transform: translateY(-8px); /* More pronounced lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.table-card h3 {
    text-align: center;
    color: #2980b9;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.table-card h3 i {
    color: #f39c12; /* Orange for specific icons */
    font-size: 1.1em;
}


/* Table Specific Styling (applied to all tables) */
table {
    width: 100%;
    border-collapse: separate; /* Use separate for rounded corners if desired, otherwise collapse */
    border-spacing: 0;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif; /* Roboto for data for readability */
    font-size: 0.95em;
    color: #555;
    overflow: hidden;
    border-radius: 8px; /* Slightly rounded table corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* Inner table shadow */
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 14px 12px; /* Increased padding for better spacing */
    text-align: center;
}

th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap; /* Prevent headers from wrapping too much */
}

tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

tbody tr:hover {
    background-color: #eaf6fd;
    cursor: pointer;
}

td:first-child {
    font-weight: bold;
    color: #333;
}

/* Responsive Table Scroll */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling for wide tables */
    -webkit-overflow-scrolling: touch; /* Smoother scrolling on mobile */
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }
    header p {
        font-size: 1em;
    }
    .main-content {
        margin: 20px auto;
        padding: 0 10px;
        gap: 25px;
    }
    .tab-container, .table-card {
        padding: 20px;
    }
    .tab-button {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .tab-container h2, .table-card h3 {
        font-size: 1.5em;
        gap: 8px;
    }
    th, td {
        padding: 10px 8px;
        font-size: 0.85em;
    }
    .tabs {
        flex-wrap: wrap; /* Allow buttons to wrap */
        border-bottom: none; /* Remove bottom border if buttons wrap */
    }
    .tab-button.active {
        border-bottom: 2px solid #3498db;
    }
}

@media (max-width: 480px) {
    .tab-button {
        width: 100%; /* Stack buttons on very small screens */
        margin-bottom: 5px;
    }
    .tabs {
        flex-direction: column;
    }
}



/*bootstrap min.css*/





