#videos-container {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out
}

/* Back button default state (hidden in desktop) */
#api-info-back {
    display: none;
}

/* Interactive Elements */
button {
  background-color: #0C7489;
  color: white;
  border: none;
  padding: 10px 20px; /* Adjust as needed */
  border-radius: 5px; /* Adjust for roundness */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth transition */
}

button:hover {
  background-color: darken(var(--accent-color), 10%); 
  transform: translateY(-2px); /* Subtle lift on hover */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

p {
  line-height: 1.6;
}

video {
  max-width: 100%;
  height: auto;
}

h1 {
margin-bottom: 20px;
}



main {
padding-top: 60px;
}

.my-list-class {
list-style-type: disc; 
padding: 20px;           
margin: 0;   
position: relative;
left: -10px;         
}

li span {
position: relative;
left: -10px;
}

nav {
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header {
  background-color: transparent;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  color: #040404;
  width: 100%;
  z-index: 100;
}

/* Header styles */
#page-title {
    background-color: #d7d9ce;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    color: #040404;
    width: 100%;
    z-index: 2;
}

body {
  padding-top: 70px; /* Adds space for the header */
}

/* Container adjustments for fluid width */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 99;
}

/* Text container adjustments */
.text-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Make images responsive */
.container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Adjust form elements for better spacing */
.form-group {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
}

input[type="text"] {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* Center align buttons and add proper spacing */
.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* API Info Section Styles */
#api-info {
    min-height: calc(100vh - 70px); /* Full viewport height minus header */
    padding: 20px;
    background-color: #fff;
}

.api-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    height: calc(100vh - 140px); /* Full viewport height minus header and padding */
    max-width: 1600px; /* Good width for 1920px screens */
    margin: 0 auto;
}

.api-info-header {
    text-align: center;
    padding: 20px 0;
}

.api-info-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    align-content: start;
}

.api-info-details p {
    margin: 10px 0;
    font-size: 1.1em;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.api-info-cta {
    text-align: center;
    padding: 20px;
}

.api-info-cta h3 {
    margin-bottom: 10px;
}

.api-info-cta .button {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2em;
}

.back-button-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-button:hover {
    background-color: #e9ecef;
    transform: translateY(-1px);
}

.back-button i {
    font-size: 0.9em;
}

/* Auth visibility classes */

.auth-only {
    display: block !important; /* Shown by default */
}

/* Service Selection Styles - Optimized for 1920x1080 */
@media screen and (min-width: 1920px) {
    #service-selection-section {
        min-height: calc(100vh - 70px);
    }

    #service-selection-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 20px;
    }

    .service-div {
        background-color: #f8f9fa;
        border-radius: 12px;
        padding: 25px;
        height: fit-content;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-div:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .service-div h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
        color: #333;
        border-bottom: 2px solid #0C7489;
        padding-bottom: 10px;
    }

    .features-list {
        margin-bottom: 20px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        background-color: white;
        border-radius: 6px;
        margin-bottom: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        transition: transform 0.2s ease;
    }

    .feature-item:hover {
        transform: translateX(2px);
    }

    .feature-item i {
        color: #28a745;
        font-size: 1em;
    }

    .feature-item span {
        font-size: 0.95em;
        color: #444;
    }

    .price-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .price-options > div {
        background-color: white;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        text-align: center;
    }

    .price-options .original-price {
        color: #666;
        font-size: 0.9em;
    }

    .price-options .discount {
        color: #28a745;
        font-weight: 600;
        font-size: 1.1em;
    }

    .price-options .total-price {
        font-weight: 600;
        color: #333;
        font-size: 1.2em;
        margin-top: 5px;
    }
}

/* Service Selection Styles - Optimized for 1920x1080 */
@media screen and (min-width: 1920px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 20px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-div {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 25px;
        height: fit-content;
    }

    .service-div h3 {
        font-size: 1.4em;
        margin-bottom: 20px;
        color: #333;
    }

    .features-list {
        margin-bottom: 25px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        background-color: white;
        border-radius: 4px;
        margin-bottom: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .feature-item i {
        color: #0C7489;
    }

    .feature-item span {
        font-size: 0.95em;
        color: #444;
    }

    .price-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .price-options > div {
        background-color: white;
        padding: 12px;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
}

/* Service Selection Styles */
#service-selection-section {
    min-height: calc(100vh - 70px);
    background-color: transparent;
}

#service-selection-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.service-div {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-div h3 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #0C7489;
    padding-bottom: 10px;
}

.service-div p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.price-options > div {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

/* Style for the select buttons */
.select-button {
    background-color: #0C7489;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 15px;
}

.select-button:hover {
    background-color: #095c6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Price display styling */
.price-display {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.price-per-vehicle {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Back button positioning for service selection */
#service-selection-section .back-button {
    margin-bottom: 30px;
}

.white-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 32px 24px;
  margin: 40px auto 40px auto;
  max-width: 900px;
}

.hero-cta {
  display: inline-block;
  margin: 24px auto 0 auto;
  font-size: 1.3em;
  padding: 16px 36px;
  text-align: center;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #f8f9fa;
  border: none;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: left;
}

.feature-card:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 18px 0 30px 0;
}

.faq-question {
  width: 100%;
  margin-bottom: 14px;
  text-align: left;
  background: #f8f9fa;
  border-radius: 8px;
  border: none;
  padding: 18px 18px;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #e9ecef;
}