/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* MODIFIED: Header and Hero Section */
.hero-section {
  background: url('rccstrucker.webp') no-repeat center center / cover;
  position: relative;
  aspect-ratio: 16 / 6; /* or any ratio you want */
}


/* MODIFIED: Form Section Styling */
.form-section {
    /* No specific styles needed here for desktop, positioning is handled in media query */
}
.h23 {
	color: black;
    font-weight: bold;
    text-align: left;
}
.game{
	background: white;
    border: 1px solid lightgrey;
    width: 60%;
    display: block;
    margin: auto;
    text-align: left;
    padding: 40px 21px;
}
.form-container {
	 box-shadow:0 8px 24px rgb(0 0 0 / 38%); 
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 320px;
    color: #fff;
    box-sizing: border-box;
}

.form-container h3 {
    margin-top: 0;
    text-align: center;
}
.mnu{color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 24px;
	}
.form-container input, .form-container button {
	width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 0px;
    border-bottom: groove;
    box-sizing: border-box;
    border-top: none;
    border-left: none;
    border-right: none;
}
.form-container input:focus,
.form-container button:focus {
    border-bottom: groove;
    box-sizing: border-box;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    box-shadow: none;
}
.form-container button {
    background-color:#1158e6;
    color: white;
    border: none;
	border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}
.form-container button:hover {
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
}
.form-container p {
    font-size: 0.8em;
    color: grey;
    text-align: center;
}

/* Other sections... */
main {
    /* This is to separate the content from the hero/form area */
}
section {
    padding: 50px 120px;
    text-align: center;
}
.line{
    display:none;
}
/* MODIFIED: Responsive Design */


/* For screens larger than 600px (Desktop View) */
@media (min-width: 800px) {
    .form-section {
        position: absolute;
        top: 55%; /* Center vertically */
        right: 0px; /* Position from the right */
        transform: translateY(-50%); /* Adjust vertical centering */
        z-index: 3;
    }
}
@media (min-width: 800px) and (max-width: 856px) {
    .form-section {
        top: 49%;
    }
	.mnu{
		color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 17px;
	}
	.form-container {
		box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 10px;
        font-size: small;
        border-radius: 8px;
        width: 214px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
        padding: 8px;
        margin-bottom: 4px;
        border-radius: 0px;
        border-bottom: groove;
        box-sizing: border-box;
        border-top: none;
        border-left: none;
        border-right: none;
    }
}
@media (min-width: 856px) and (max-width: 869px) {
    .form-section {
        top: 49%;
    }
	.mnu{
		color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 17px;
	}
	.form-container {
		box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 10px;
        font-size: small;
        border-radius: 8px;
        width: 214px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
        padding: 8px;
        margin-bottom: 4px;
        border-radius: 0px;
        border-bottom: groove;
        box-sizing: border-box;
        border-top: none;
        border-left: none;
        border-right: none;
    }
}
@media (min-width: 869px) and (max-width: 930px) {
    .form-section {
        top: 50%;
    }
	.mnu{
		color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 20px;
	}
	.form-container {
		box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 13px;
        font-size: small;
        border-radius: 8px;
        width: 228px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
        padding: 8px;
        margin-bottom: 4px;
        border-radius: 0px;
        border-bottom: groove;
        box-sizing: border-box;
        border-top: none;
        border-left: none;
        border-right: none;
    }
}
@media (min-width: 930px) and (max-width: 999px) {
    .form-section {
        top: 52%;
    }
	.mnu{
		color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 20px;
	}
	.form-container {
		box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 13px;
        font-size: small;
        border-radius: 8px;
        width: 228px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
        padding: 8px;
        margin-bottom: 4px;
        border-radius: 0px;
        border-bottom: groove;
        box-sizing: border-box;
        border-top: none;
        border-left: none;
        border-right: none;
    }
}
@media (min-width: 999px) and (max-width: 1060px) {
    .form-section {
        top: 54%;
    }
	.mnu{
		color: black;
    font-weight: bold;
    text-align: left;
    font-family: sans-serif;
    font-size: 22px;
	}
	.form-container {
box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 13px;
        font-size: small;
        border-radius: 8px;
        width: 260px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
		padding: 12px;
		margin-bottom: 5px;
		border-radius: 0px;
		border-bottom: groove;
		box-sizing: border-box;
		border-top: none;
		border-left: none;
		border-right: none;
	}
}
@media (min-width: 1061px) and (max-width: 1090px) {
    .form-section {
        top: 56%;
    }
	.form-container {
        box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 14px;
        font-size: small;
        border-radius: 8px;
        width: 261px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
		padding: 12px;
		margin-bottom: 5px;
		border-radius: 0px;
		border-bottom: groove;
		box-sizing: border-box;
		border-top: none;
		border-left: none;
		border-right: none;
	}
}
@media (min-width: 1090px) and (max-width: 1099px) {
    .form-section {
        top: 52%;
    }
	.form-container {
        box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
        background-color: white;
        padding: 16px;
        font-size: small;
        border-radius: 8px;
        width: 275px;
        color: #fff;
        box-sizing: border-box;
    }
	.form-container input, .form-container button {
		width: 100%;
		padding: 12px;
		margin-bottom: 5px;
		border-radius: 0px;
		border-bottom: groove;
		box-sizing: border-box;
		border-top: none;
		border-left: none;
		border-right: none;
	}
}
@media (min-width: 1100px) and (max-width: 1199px) {
    .form-section {
        top: 54%;
    }
	.form-container {
		box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
		background-color: white;
		padding: 22px;
		font-size: small;
		border-radius: 8px;
		width: 300px;
		color: #fff;
		box-sizing: border-box;
	}
	.form-container input, .form-container button {
		width: 100%;
		padding: 12px;
		margin-bottom: 7px;
		border-radius: 0px;
		border-bottom: groove;
		box-sizing: border-box;
		border-top: none;
		border-left: none;
		border-right: none;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .form-section {
        top: 55%;
    }
.form-container {
    box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
    background-color: white;
    padding: 22px;
    font-size: small;
    border-radius: 8px;
    width: 320px;
    color: #fff;
    box-sizing: border-box;
}
.form-container input, .form-container button {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 0px;
    border-bottom: groove;
    box-sizing: border-box;
    border-top: none;
    border-left: none;
    border-right: none;
}
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .form-section {
        top: 57%;
    }
}
@media (min-width: 1600px) and (max-width: 1799px) {
    .form-section {
        top: 52%;
    }
}
@media (min-width: 1800px) and (max-width: 1999px) {
    .form-section {
        top: 51%;
    }
}
@media (min-width: 2000px) {
    .form-section {
        top: 50%;
    }
}


/* For screens 600px or less (Mobile View) */
@media (max-width: 800px) {
.hero-section {
         aspect-ratio: 16 / 14; 
        background: url(rccstruckersmall.webp) no-repeat center center / cover;
    }
    .form-section {
        padding: 30px 20px;
        background-color: #f4f4f4;
    }

.form-container{
        width: 100%;
        padding: 25px;
        margin-bottom: 15px;
        border-radius: 0px;
        border-bottom: none;
        box-sizing: border-box;
        border-top: none;
        border-left: none;
        box-shadow: 0 8px 24px rgb(0 0 0 / 0%);
        border-right: none;
    }

    .form-container p {
        color: #666;
    }
	.game {
		background: white;
		border: 1px solid lightgrey;
		width: 100%;
		display: block;
		margin: auto;
		text-align: left;
		padding: 40px 21px;
	}
}


h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Services Section */
.service-cards {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.service-cards .card {
    width: 49%;
	box-shadow: none;
}

.service-cards .card img {
    width: 100%;
}

/* Why Us Section */
.features {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.feature {
background: #2196f312;
    width: 22%;
    padding: 20px 15px;
	letter-spacing: 0.5px;
    color: #515151;
    font-size: smaller;
}
.feature_h1{
	font-size: larger;
    font-weight: bold;
    color: black;
}
.feature img {
	width: 95%;
}

/* Packages Section */
.packages {
    background-color: #2196f312;
	border-bottom: 2px dashed #c7c7c7;
}

.package-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.package-card {
    padding: 20px;
    width: 30%;
    text-align: left;
}


.package-card h3 {
	background: #1158e6;
    font-size: 1.0em;
    color: white;
    padding: 18px;
    font-weight: normal;
}

.package-card .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #1158e6;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card ul li {
background: #fffffff7;
    padding: 18px;
    border-bottom: 1px groove;
}

.learn-more {
    margin-top: 20px;
	color: #525252;
    background: #f5f5f5;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size: smaller;
    text-align: center;
    margin: auto;
}
.learn-mores {
color: #6b6b6b;
    text-decoration: none;
    padding: 10px;
    display: block;
    width: fit-content;
    font-size: medium;
    text-align: center;
    margin: auto;
}
.compare-button {
display: block;
    width: max-content;
    margin: auto;
    padding: 7px 20px 8px;
    border: 1px solid #000000;
    color: #0503da;
    text-decoration: none;
    border-radius: 5px;
}


/* How It Works Section */
.how-it-works {
    display: flex;
    align-items: center;
    text-align: left;
}

.how-it-works-content {
    flex: 1;
}

.how-it-works-image {
    flex: 1;
}

.how-it-works-image img {
display: block;
    width: 80%;
    border-radius: 15px;
    margin: auto;
}

/* Projects and Testimonials */
.project-gallery, .testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
width: 33%;
    border: 2px solid #e0e0e0;
    padding: 0px;
    border-radius: 5px;
}
.project-card img, .testimonial-card img {
    width: 100%;
    border-radius: 8px;
}
.pen{font-size: medium;
    color: grey;
    margin-top: 5px;
}
.view-more {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #1158e6;
    color: #1158e6;
    text-decoration: none;
    border-radius: 5px;
}

/* Partners and News */
.partners-news {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.partner-logos img, .news-logos img {
    height: 40px;
    margin: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 50px;
    text-align: center;
}
.dec{
	text-decoration: none;color: black;
}
.dec:hover{
	text-decoration: none;color: black;
}
/* Responsive Design */
@media (max-width: 768px) {
	

	.line{
		height: 1px;
		display:block;
		position: absolute;
		width: 82%;
	}
    .hero-section {
        flex-direction: column;
        padding: 20px;
    }
    .form-container {
        width: 100%;
        margin-top: 20px;
    }
    .stats, .features, .service-cards, .package-details, .project-gallery, .testimonial-cards, .partners-news, .how-it-works {
        flex-direction: column;
        align-items: center;
    }
    .service-cards .card, .feature, .package-card, .project-card, .testimonial-card {
        width: 90%;
        margin-bottom: 20px;
    }
	section {
		padding: 15px;
		text-align: center;
	}	
}


/* ---------------------------------- */
/* ----- NEW STYLES ADDED BELOW ----- */
/* ---------------------------------- */

/* NEW: Styles for Interactive Packages */
.package-feature-list {
    margin-top: 20px;
}
.feature-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}
.package-feature.disabled .feature-header {
    cursor: default;
    color: #999;
}
.toggle-icon {
    font-size: 1.2em;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}
.feature-description {
    display: none; /* Hidden by default */
    padding: 10px 0 10px 30px; /* Indent the description */
    color: #555;
    font-weight: normal;
}


/* NEW: Styles for "How it works" Steps */
.steps {
    background-color: #2196f312;
}
.step-items-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.step-items {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.step {
    font-size: 1.0em;
    cursor: pointer;
    text-align: center;
    width: 120px; /* Give steps a fixed width */
    color: #888;
    transition: color 0.4s;
}
.step.active {
    color: #333;
}
.step span {
    display: block;
    font-size: 1.4em;
    color: #ccc; /* Default color */
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 44px; /* Center number */
    margin: 0 auto 10px;
    background-color: #fff;
    transition: color 0.4s, border-color 0.4s;
    position: relative;
    z-index: 2;
}
.step.active span {
    background-color: #1158e6;
	color:white;
    border-color: #1158e6;
}

/* Connecting Line */
.step-items::before {
    content: '';
    position: absolute;
    top: 25px; /* Position vertically centered with the circle */
    left: 5%;
    width: 90%;
    height: 3px;
    background-color: #ccc; /* Default line color */
    z-index: 0;
}
.step-connector {
    position: absolute;
    top: 25px;
    left: 5%;
    width: 0; /* Initially no width */
    height: 3px;
    background-color: #1158e6; /* Active line color */
    z-index: 1;
    transition: width 0.5s ease-in-out;
}

/* Step Content Area */
#step-content-container {
    padding: 20px;
    text-align: center;
}
.step-content {
    display: none; /* Hide all content by default */
    animation: fadeIn 0.5s;
}
.step-content.active {
    display: block; /* Show active content */
}
.step-content img {
    max-width:300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}
.step-content h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
}
.step-content p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin:0px 0px 0px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .step span{
        display: block;
        font-size: 1.4em;
        color: #ccc;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 39px;
        margin: 0 auto 10px;
        background-color: #fff;
        transition: color 0.4s, border-color 0.4s;
        position: relative;
        z-index: 2;
    }
    .step-items {
        font-size: xx-small;
    }
    .step {
        margin-bottom: 30px;
        width: 100%;
    }
    .step-items::before, .step-connector {
       display: none; /* Hide connecting line on vertical layout */
    }
}
p{
	font-size: larger;
}
    .refer-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgb(0 0 0 / 20%);
      max-width: 1000px;
      margin: 40px auto;
      flex-wrap: wrap;
    }

    .refer-image {
      flex: 1;
      text-align: center;
    }

    .refer-image img {
      max-width: 100%;
      height: auto;
    }

    .refer-text {
      flex: 1;
      padding: 20px;
    }

    .refer-text h2 {
		font-size: revert;
		letter-spacing: 0px;
		color: #000;
		font-family: system-ui;
		margin-bottom: 20px;
		font-weight: 600;
	}

    .refer-text h2 span {
      color: #FFC107;
    }

    .refer-text button {
      padding: 10px 20px;
    font-size: 16px;
    background-color: #0503da00;
    color: black;
    border: 1px solid black;
    border-radius: 6px;
      cursor: pointer;
    }

    @media (max-width: 800px) {
      .refer-section {
        flex-direction: column;
        text-align: center;
		width: 90%;
      }

      .refer-text {
        padding: 10px;
      }
    }
.partner-logos {
display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 40px 0px;
    width: -webkit-fill-available;
}

.partner-logos img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  display: block;
  margin: auto;
}

@media (max-width: 750px) {
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .partner-logos img {
    height: 70px;
  }
}
.customer-name{
	font-weight: 500;
}