:root {
  --primary-color: #0056ff;
  --primary-hover: #0044cc;
  --secondary-color: #f4f6f9;
  --text-color: #333;
  --border-color: #dde2e9;
  --white-color: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: var(--white-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 24px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-hover);
}

.breadcrumb {
  margin: 15px 0;
  color: #555;
  font-size: 14px;
}

.tool-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.tool-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #666;
}

/* Converter Specific Styles */
.converter-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    text-align: left;
}

.color-preview-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.color-preview {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
}

#colorPicker {
    width: 100px;
    height: 40px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
}

.input-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group label {
    font-weight: 600;
    width: 40px;
}

.input-group input[type="text"] {
    flex-grow: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.copy-btn:hover {
    background: var(--primary-hover);
}

.rgb-sliders {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.slider-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider-group label { font-weight: 600; width: 20px; }
.slider-group input[type="range"] { flex-grow: 1; }
.slider-group span { font-weight: 500; width: 30px; text-align: right; }

/* General Sections */
section { margin-top: 50px; }
h2 { text-align: center; margin-bottom: 30px; font-size: 2rem; }
ul { list-style: none; padding: 0; max-width: 700px; margin: 0 auto; }
ul li { background: #e9f2ff; padding: 12px 18px; margin-bottom: 10px; border-radius: 8px; border-left: 4px solid var(--primary-color); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 20px; }
.card { background: var(--white-color); padding: 25px; border-radius: 12px; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.card img { width: 50px; height: 50px; margin-bottom: 15px; }
.card button { background: var(--primary-color); color: var(--white-color); border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
.faq-item { background: var(--white-color); padding: 20px; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); text-align: left; }
footer { text-align: center; padding: 25px; background: var(--white-color); margin-top: 40px; border-top: 1px solid var(--border-color); }
#backToTop { position: fixed; bottom: 20px; right: 20px; background: var(--primary-color); color: var(--white-color); border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; display: none; font-size: 20px; line-height: 45px; text-align: center; }

@media (max-width: 768px) {
  .converter-grid { grid-template-columns: 1fr; }
  .color-preview-wrapper { margin-bottom: 20px; }
  h1 { font-size: 2rem; }
}
/* style.css */

/* --- Global Styles & Variables --- */
:root {
  --primary: #0056ff;
  --secondary: linear-gradient(135deg, #00E0FF, #00FFFF); /* Bright Cyan Gradient */
  --text: #222;
}

body {
  font-family: Poppins, sans-serif;
  margin: 0;
  background: var(--secondary);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* --- Header Styles --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0056ff, #00aaff);
  padding: 15px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-img {
  margin-right: 12px;
  filter: brightness(1) invert(0.9) sepia(0.8) saturate(3) hue-rotate(45deg);
}

.logo-text {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
  font-weight: 700;
}

/* Navbar links */
#navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

#navbar a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

#navbar a:hover {
  color: #fffa;
  transform: scale(1.1);
}

/* Hamburger Icon */
#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  font-family: Poppins, sans-serif;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0056ff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  min-width: 180px;
  z-index: 999;
  border: 1px solid #004acb;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #004acb;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* --- Mobile Responsive Menu --- */
@media screen and (max-width: 768px) {
  #hamburger {
    display: flex;
  }

  #navbar {
    position: fixed;
    top: 80px;
    right: 15px;
    width: 250px;
    background: linear-gradient(180deg, #0056ff, #00399d);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 0;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.25);
    z-index: 1001;
    border-radius: 12px;
    transform: translateX(110%);
    transition: transform 0.3s ease-in-out;
  }

  #navbar.show {
    display: flex;
    transform: translateX(0);
  }

  #navbar a, .dropdown {
    padding: 15px 25px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border-radius: 0;
    border: none;
    min-width: 100%;
  }

  .dropdown-content a {
    color: #e0f7ff;
    font-weight: normal;
    padding-left: 40px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* --- Footer Styles --- */
footer a {
  text-decoration: none;
  color: var(--primary);
  margin-right: 15px;
}

footer a:hover {
  color: #0039c1;
}

/* Social media icon hover effect */
.footer-social a:hover {
    transform: scale(1.15);
}
/*
BASE TYPOGRAPHY & RESET
*/
:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --text-color: #333333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-family: 'Poppins', sans-serif; /* Using Poppins for a modern look */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/*
LAYOUT CONTAINERS (STRICT RULE 1: 1200px max-width)
*/
.container {
    width: 100%;
    max-width: 1200px; /* STRICT RULE: 1200px max-width */
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    background-color: var(--white);
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/*
HEADER (STRICT RULE 2: NOT STICKY)
*/
.main-header {
    position: relative; /* STRICT RULE: Not sticky/fixed */
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

.main-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.main-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/*
TYPOGRAPHY STYLES
*/
h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin-bottom: 20px;
    color: #4a4a4a;
    text-align: justify;
}

ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

code {
    background-color: #f0f4f8;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    color: #d63384;
    font-size: 0.95em;
}

/*
TABLE STYLES (Responsive Table)
*/
.table-container {
    width: 100%;
    overflow-x: auto; /* Responsive scrolling for small screens */
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensures table doesn't squish on desktop */
    background-color: var(--white);
}

thead {
    background-color: var(--primary-color);
    color: var(--white);
}

th, td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f5ff;
}

/*
CTA BOX & BUTTONS (Touch-Friendly)
*/
.cta-box {
    background-color: #eef6ff;
    border-left: 6px solid var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h2 {
    border-bottom: none;
    margin-top: 0;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-top: 10px;
    min-width: 250px; /* Touch-friendly minimum width */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/*
FOOTER
*/
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #3498db;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/*
MEDIA QUERIES (RESPONSIVE DESIGN)
*/

@media (max-width: 768px) {
    /* Mobile Adjustments: Readable font-sizes, reduced padding, larger tap targets */
    body {
        font-size: 16px; /* Readable mobile font size */
    }

    .container {
        padding: 0 15px;
    }

    .main-header {
        padding: 40px 0;
    }

    .main-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .main-header .subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .content-wrapper {
        padding: 20px;
        margin-top: 20px;
        border-radius: 8px;
    }

    h2 {
        font-size: 1.6rem;
        margin-top: 40px;
        padding-bottom: 10px;
    }

    /* Table adjustments for mobile */
    table {
        min-width: 100%; /* Allow table to shrink, but overflow-x handles the rest */
    }

    th, td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    /* Touch-friendly button adjustments */
    .cta-box {
        padding: 25px;
    }

    .btn-primary {
        width: 100%; /* Full width button for easier tapping */
        padding: 18px;
        font-size: 1rem;
    }

    ul {
        padding-left: 20px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .main-header h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}
/*
BASE TYPOGRAPHY & RESET
*/
:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --text-color: #333333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

/*
LAYOUT CONTAINERS (STRICT RULE 1: 1200px max-width)
*/
.container {
    width: 100%;
    max-width: 1200px; /* STRICT RULE: 1200px max-width */
    margin: 0 auto;
    padding: 0 20px;
}

/*
HEADER (STRICT RULE 2: NOT STICKY)
*/
.main-header {
    position: relative; /* STRICT RULE: Not sticky/fixed */
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.main-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.main-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/*
FAQ SECTION STYLING
*/
.faq-section {
    padding: 20px 0;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #555;
}

/*
FAQ LIST ITEMS
*/
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    color: #444;
    text-align: justify;
    margin-bottom: 0;
}

/*
COMPARISON TABLE STYLING (Responsive)
*/
.comparison-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.comparison-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}

.comparison-section p {
    text-align: center;
    margin-bottom: 30px;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Horizontal scroll for mobile */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px; /* Ensures table doesn't break on small screens */
}

th, td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #eef6ff;
}

/*
OUTRO STYLING
*/
.faq-outro {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #e8f4fd;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.faq-outro p {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

/*
FOOTER
*/
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
}

footer a {
    color: #3498db;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/*
MEDIA QUERIES (RESPONSIVE DESIGN)
*/

@media (max-width: 768px) {
    /* Mobile Adjustments: Readable font-sizes, reduced padding, larger tap targets */
    body {
        font-size: 16px; /* Readable mobile font size */
    }

    .container {
        padding: 0 15px;
    }

    .main-header {
        padding: 40px 0;
    }

    .main-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .main-header .subtitle {
        font-size: 1.1rem;
    }

    .faq-intro h2 {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .comparison-section h3 {
        font-size: 1.4rem;
    }

    /* Table adjustments for mobile */
    th, td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-header h1 {
        font-size: 1.7rem;
    }

    .faq-intro h2 {
        font-size: 1.6rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}
/* --- GRID LAYOUT --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* --- CARD DESIGN (Green Background) --- */
.card {
  background: linear-gradient(160deg, #00e600, #00ff00); /* Bright Green Gradient */
  border-radius: 30px;
  padding: 20px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px; /* Thoda height fix taki buttons align rahein */
}

/* --- BLUE ENERGY ANIMATION EFFECT --- */
@keyframes blueEnergyAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 224, 255, 0.4), rgba(0, 255, 255, 0.6), rgba(0, 224, 255, 0.4), rgba(0, 255, 255, 0.6), rgba(0, 224, 255, 0.4));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
  animation: blueEnergyAnimation 4s linear infinite;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* --- IMAGES & TEXT --- */
.card img {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.card h2 {
  color: #ffffff;
  font-size: 1.35rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin: 0 0 10px 0;
  font-family: 'Poppins', sans-serif;
}

.card p {
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
}

/* --- BUTTON STYLE (Cyan with Black Border) --- */
.card a {
  text-decoration: none;
}

.card button {
  background: linear-gradient(45deg, #00BFFF, #00FFFF);
  color: #ffffff;
  border: 2px solid black; /* Black Border Added */
  border-radius: 12px;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 255, 0.6);
}