body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: #fff;
}

.container {
    width: 70%;
    margin: 0 auto;
}

/* CSS for mobile view */
@media screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding-top: 10px;  /*space above the logo and above the first main heading */
    }

    .logo {
        order: 1; /* Change the order of the logo */
    }

    .contact-form {
        order: 2; /* Change the order of the contact form */
        margin-top: 10px; /* Optional: Add margin between logo and contact form */
    }
}

.container2 {
    width: 80%;
    margin: 0 auto;
    padding-top: 40px;
}

.top-row {
    
    position: sticky;
    top: 0; /* Adjust this value to match the combined height of the top row and header */
    background-color: #f9a446;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 1000; /* Ensure the header is above other content */
}



/* CSS for mobile view */
@media (max-width: 767px) {
    .top-row {
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999; /* Ensure the top row is above other elements */
        padding: 0px; /* Add padding for spacing */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow for elevation effect */
    }

    .arrow-container {
        display: none; /* Hide the arrow container */
    }

    .top-row p {
        display: none;
        white-space: normal; /* Allow wrapping of text */
        text-align: center; /* Center align the text */
    }

    .header {
        height: 200px;
    }

    .navigation .container {
        display: flex;
        justify-content: space-between; /* Change from 'flex-start' to 'space-between' */
        align-items: center;
        padding-right: 20px; /* Add right padding to create space between the form and the right edge */
    }
}

.arrow-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.arrow {
    cursor: pointer;
    font-size: 12px;
    transform: rotate(45deg) translate(0, 0);
    transition: transform 0.3s ease;
}

.arrow:hover {
    transform: rotate(45deg) translate(0, -5px);
}

.header {
    position: sticky;
    top: 40px; /* Adjust this value to match the combined height of the top row and header */
    background-color: #333;
    color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 2000; /* Ensure the header is above other content */
}

.header h1 {
    margin: 0;
}

.header p {
    color: #888;
}

.navigation {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 0.05px solid #464040; /* Add this line to create a thin white line */
}

.navigation .container {
    display: flex;
    justify-content: space-between; /* Change from 'flex-start' to 'space-between' */
    align-items: center;
    padding-right: 20px; /* Add right padding to create space between the form and the right edge */
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Add left margin to create space between the logo and the form */
}
.logo img {
    height: 80px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    padding-left: 20px; /* Add padding to the left */
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.nav-links a:hover {
    border-bottom: 2px solid #fff;
}

a {
    color: inherit; /* Inherit the color from the parent */
    text-decoration: none; /* Remove underline */
    font-weight: inherit; /* Inherit font weight from the parent */
}

.heroparent {
       
}


.heroleft {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    text-align: center;
}

.heroright {
    width: 80%;
    margin: auto ; 
    margin-top: 20px;
}

/* Media query for screens up to 768px */
@media screen and (max-width: 768px) {
    .heroright {
        width: 100%; /* Make it full width for mobile view */
    }
}
.heroparent h1 {
    
    padding-bottom: 10px;
    font-size: 4.0em; /* Default font size */

    /* Media query for screens 600px and smaller */
    @media screen and (max-width: 600px) {
        font-size: 2em; /* Adjust the font size for smaller screens */
    }

    /* Media query for screens 400px and smaller */
    @media screen and (max-width: 400px) {
        font-size: 2.5em; /* Adjust the font size for even smaller screens */
    }

    /* Add more media queries as needed */
    /* ...
       @media screen and (max-width: ...px) {
           font-size: ...em;
       }
    */

    margin-bottom: 20px;
}
.heroparent h2 {
    margin-bottom: 20px;
    
}

.heroparent p {
    font-size: 1.3em; /* Default font size hero subheading */
    

    /* Media query for screens 600px and smaller */
    @media screen and (max-width: 600px) {
        font-size: 1.2em; /* Adjust the font size for smaller screens */
    }

    /* Media query for screens 400px and smaller */
    @media screen and (max-width: 400px) {
        font-size: 1.1em; /* Adjust the font size for even smaller screens */
    }

    /* Add more media queries as needed */
    /* ...
       @media screen and (max-width: ...px) {
           font-size: ...em;
       }
    */
    margin-bottom: 30px;
}

.step-section {
    width: 100%;
    text-align: center; /* Ensures the iframe stays centered */
    padding-bottom: 80px; 
}

.step-section iframe {
    width: 60%;
    max-width: 100%; /* Prevents overflow on small screens */
    height: auto;
    aspect-ratio: 16 / 9;
}

.cta-btn {
    margin-left: auto; /* This will push the button to the far right */
    
}
.cta-btn-container {
    margin-left: auto;
   
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #13c0f2;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ddd;
}

.btn-hero {
    background-color: #13c0f2;
    color: #fff;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}



/* Make the down arrows thinner */
.nav-links i.fa-xs {
    font-size: 10px; /* Adjust the font size as needed */
    line-height: 10px; /* Adjust the line height as needed */
    margin-left: 5px;
}

/* Add space between text and arrow */
.nav-links i {
    margin-left: 5px;
}

/* Rotate the down arrow */
.nav-links i {
    transform: rotate(deg);
    transition: transform 0.3s ease;
}

/* Rotate the down arrow on hover */
.nav-links a:hover i {
    transform: rotate(0);
}



.text-scroll-container {
    position: sticky;
    top: 150px; /* Adjust this value to match the combined height of the top row and header */
    background-color: #333; /* Set the background color to match the navigation row */
    /*color: #d8e3f3;*/
    /*color: #f9a446;*/
    color: rgba(249, 164, 70, 0.7);
    overflow: hidden;
    white-space: nowrap;
    padding: 20px; /* Adjust as needed */
    z-index: 6000; /* Ensure the header is above other content */
}
/* Media query for screens up to 768px */
@media screen and (max-width: 768px) {
    .text-scroll-container {
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 9999; /* Ensure the top row is above other elements */
        padding: 20px; /* Add padding for spacing */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow for elevation effect */
        
        /*top: 1px; /* Adjust this value to match the combined height of the top row and header */
        /*padding: 20px 20px; /* Reduce the padding above and below the scrolling text for smaller screens */
    }
}


.text-list {
    display: inline-block;
    animation: scrollText 182s linear infinite; /* Adjust the duration as needed */
}

.text {
    display: inline-block;
    margin-right: 120px; /* Adjust spacing between text items as needed */
    font-size: 1.3em; /* Adjust the font size as needed */
}
/* Media query for screens up to 768px (mobile view) */
@media screen and (max-width: 768px) {
    .text {
        margin-right: 50px; /* Adjust spacing between list items for mobile view */
    }
    .text-list {
        animation-delay: -15s; /* Adjust the negative delay value to start the animation sooner */
    }
}

@keyframes scrollText {
    0% {
        transform: translateX(10%); /* Start offscreen to the right */
    }
    100% {
        transform: translateX(-100%); /* Move completely offscreen to the left */
    }
}




.hero-center {
    text-align: center;
    padding: 50px 0; /* Adjust padding as needed */
}
/* Media query for screens up to 768px */
@media screen and (max-width: 768px) {
    .hero-center {
        padding-top: 10px; /* Reduce the padding above the text for smaller screens */
    }
}


.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px; /* Adjust margin between rows as needed */
}

.column {
    width: 48%; /* Adjust width of columns as needed */
}

/* Add this media query */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column; /* Stack items vertically */
    }

    .column {
        width: 100%; /* Occupy full width */
        margin-bottom: 0px; /* Add space between stacked items */
    }
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%; /* Ensure images don't exceed container width */
    height: auto; /* Maintain aspect ratio */
}

.text-container {
    text-align: center;
}

.text-container h2 {
    margin-top: 20px; /* Adjust spacing between heading and image */
}

.text-container p {
    margin-bottom: 20px; /* Adjust spacing between text and image */
}

.hero-center h1 {
    font-size: 2.5em; /* Default font size */

    /* Media query for screens 600px and smaller */
    @media screen and (max-width: 600px) {
        font-size: 1.8em; /* Adjust the font size for smaller screens */
    }

    /* Media query for screens 400px and smaller */
    @media screen and (max-width: 400px) {
        font-size: 1.5em; /* Adjust the font size for even smaller screens */
    }

    /* Add more media queries as needed */
    /* ...
       @media screen and (max-width: ...px) {
           font-size: ...em;
       }
    */
    
    margin-bottom: 20px;
}

.hero-center p {
    font-size: 1.2em; /* Default font size */

    /* Media query for screens 600px and smaller */
    @media screen and (max-width: 600px) {
        font-size: 1em; /* Adjust the font size for smaller screens */
    }

    /* Media query for screens 400px and smaller */
    @media screen and (max-width: 400px) {
        font-size: 0.9em; /* Adjust the font size for even smaller screens */
    }
     
    margin-bottom: 30px;
}



.split-screen {
    padding: 50px 0; /* Adjust padding as needed */
    height: 500px; /* Set a fixed height for the container */
    
}

.left-side,
.right-side {
    width: 50%; /* Set both sides to occupy 50% of the container */
    float: left; /* Float left to achieve side-by-side layout */
    box-sizing: border-box; /* Include padding and border in the width calculation */
    height: 100%;
  
}

.left-side {
    
    padding: 0px 20px 0px 100px; /* Add padding as needed */
}

.right-side {
    padding: 0 20px; /* Add padding as needed */
}

.right-side .video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.right-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Media query for screens up to 768px */
@media screen and (max-width: 768px) {
    .left-side {
        padding: 0 10px; /* Reduce the side padding for smaller screens */
    }
    
    .right-side {
        padding: 0 10px; /* Reduce the side padding for smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .split-screen {
        padding: 10px 0; /* Adjust padding as needed */
        height:fit-content ; /* Remove fixed height to allow content to expand vertically */
    }

    .left-side,
    .right-side {
        width: 100%; /* Set both sides to occupy full width */
        float: none; /* Remove floating to stack them vertically */
        box-sizing: border-box; /* Include padding and border in the width calculation */
        height: auto; /* Allow content to determine height */
        padding: 0 ; /* Adjust padding as needed */
    }

    .right-side .video-container {
       padding-top: 60px;
       height: auto; /* Allow video container to adjust height based on video */
    }

    .text-container {
        margin-top: 20px; /* Add margin to separate text container from split-screen */
    }

    
}

#playPauseButton {
    position: absolute;
    bottom: 0px; /* Adjust as needed */
    right: 0px; /* Adjust as needed */
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #5c5353;
}


#autoplayVideo {
    width: 100%; /* Make sure the video takes up the full width of its container */
    height: 100%; /* Make the height 100% to fill its container */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    cursor: pointer; /* Change cursor to pointer when hovering over the video */
}


/* Clear the float to prevent layout issues */
.split-screen:after {
    content: "";
    display: table;
    clear: both;
}

.full-width-image {
    
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Added position relative */
}

.full-width-image img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally within the container */
}

.full-width-image2 {
   
    display: flex;
    
    position: relative; /* Added position relative */
   
    
}

.full-width-image2 img {

    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image horizontally within the container */
}

.image-container {
    position: relative;
    display: inline-block; /* Ensures that the container only takes up as much width as its content */
    padding-bottom: 90px;
}

.image-container1 {
    position: relative;
    display: inline-block; /* Ensures that the container only takes up as much width as its content */
    padding-bottom: 20px;
}
.image-container1 img {
    max-width: 100%; /* Ensure images don't exceed container width */
    height: auto; /* Maintain aspect ratio */
}


.keeping{
    display:flex;
    align-items: center;
    justify-content: center;
}

.image-container2 {
    display: inline-block; /* Ensures that the container only takes up as much width as its content */
}

.image-container3 {
    display: inline-block; /* Ensures that the container only takes up as much width as its content */
    margin-left: 10px;
}

.overlay-image {
    position: absolute;
    bottom: 0px; /* Adjust as needed */
    left: 10px; /* Adjust as needed */
    max-width: 25%; /* Set a maximum width for the overlay image */
    width: 100%; /* Ensure that the width respects the maximum width */
    height: auto; /* Automatically adjust height based on the width to maintain aspect ratio */
}




.customer-reviews {
    background-color: #f8f8f8; /* Add background color as needed */
    padding: 100px 100px 0px 100px; /* Adjust padding as needed */
    display: flex;
    flex-wrap: wrap; /* Allow flex items to wrap to the next line */
    justify-content: space-between;
}


.review-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    margin-bottom: 30px;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .customer-reviews {
        flex-direction: column;
    }
    .review-column {
        width: 100%;
        margin: 0 auto;
    }
    
        .full-width-image img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Center the image horizontally within the container */
    }
}



.review-column img {
    border-radius: 10%; /* Make the image round */
    width: 30%; /* Adjust width as needed */
    height: Auto; /* Adjust height as needed */
    margin-bottom: 15px;
}


.review-content {
    max-width: 70%; /* Adjust max-width as needed */
    color: #333;

    
}
/* Media query for screens up to 768px */
@media screen and (max-width: 768px) {
    .review-content {
        width: 100%; /* Make each review column occupy the full width of the container */
      
    }
    .customer-reviews {
        width: 100%;
        padding: 50px 10px 10px 10px;
    }
    
    
}

.read-full-story {
    color: #007bff;
    text-decoration: none;
}

.read-full-story:hover {
    text-decoration: underline;
}

/*  code for highlighting table items */
.list {
    border-collapse: collapse; /* Hide borders between cells */
    width: 100%;
}

.heading {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #13c0f2;
}

.icon {
    margin-right: 30px;
}

/* Ensure consistent icon size */
.icon i {
    font-size: 16px;
}

.content {
    display: block; /* Hide the list-item content initially */
}


/* Change icon color to blue when highlighted */
.highlighted .icon i {
    color: #13c0f2;
}

/* Add this CSS to define the color variations */
.highlighted-color {
    
}
.list-item {
    
    padding: 10px 20px 20px 20px;
    border-top-left-radius: 10px; /* Rounded top left corner */
    border-top-right-radius: 10px; /* Rounded top right corner */ 
    overflow: hidden; /* Add this line to hide overflow content */
    position: relative; /* Add this line to make positioning of pseudo-element relative to the list item */
    transition: height 1.2s ease; /* Add transition for height change */
}

.highlighted {
    /* Existing styles */
    background-color: #474745; /* Highlight color */
    transition: background-color 0.3s ease; /* Add transition for background color change */
}

.highlighted h3 {
    /* Existing styles */
    color: #13c0f2; /* colour of heading in the animated section*/
    transition: color 2.9s ease; /* Add transition for text color change */
}



.highlighted::after {
    content: ""; /* Add content to pseudo-element */
    position: absolute; /* Position the pseudo-element absolutely */
    bottom: 0; /* Align pseudo-element to the bottom of the list item */
    left: 0; /* Start from the left side of the list item */
    width: 0; /* Initially start with width 0 */
    height: 3px; /* Set the height of the effect line */
    background-color: #a1cce9; /* Set the color of the effect line */
    animation: highlightEffect 6.5s linear forwards; /* Apply animation to blue line that moves */
}

@keyframes highlightEffect {
    0% {
        width: 0; /* Start with width 0 */
    }
    100% {
        width: 100%; /* Move across to the right with full width */
    }
}

.footer {
    background-color: #fff;
    color: #333;

    padding: 60px 0 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-logo img {
    height: 80px;
    margin-bottom: 10px;
}

.footer-logo span {
    font-weight: bold;
   
}

.contact-details p {
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}

.social-media ul {
    list-style: none;
    padding: 0;
}

.social-media ul li {
    display: inline-block;
    margin-right: 10px;
}

.social-media ul li:last-child {
    margin-right: 0;
}

.social-media ul li a {
    color: #fff;
    font-size: 20px;
}

/* CSS for responsive design */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .social-media {
        margin-bottom: 20px;
    }

    .contact-details {
        margin-top: 20px;
    }

    .contact-details p {
        margin: 5px 0;
    }
}

.plus-sign {
    width: 20px;
    height: 20px;

}

.contact-form {
    display: flex;
    align-items: center;
    
}

.form-group {
    margin-right: 20px;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group label {
    color: #fff;
}

.contact-form form {
    display: flex;
    
}

.contact-form input {
    width: 200px;
    margin-right: 10px;
    
}

.form-group input {
    width: 200px;
    height: auto;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
}

.contact-form .btn {
    background-color: #fff;
    color: #13c0f2;
    border: 1px solid #13c0f2;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #13c0f2;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .contact-form input {
        width: 100%; /* Adjust input width for smaller screens */
        max-width: 300 px;
        margin-right: 0; /* Remove margin-right for smaller screens */
    }   
    .contact-form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-left: 10px;
            padding-bottom: 10px;
        }
    .contact-form .btn {
        /* Adjust button width and margin for mobile view */
        width: 35%;
       
    }
    .form-group input {
        width: 95%;
        height: auto;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        background-color: #fff;
        color: #333;
}
    .contact-form .btn {
    background-color: #fff;
    color: #13c0f2;
    border: 1px solid #13c0f2;
    padding: 0px 0px;
    border-radius: 5px;
    cursor: pointer;
}
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Initially hide the scroll-to-top button */
}

.scroll-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.scroll-to-top-btn:hover {
    background-color: #555;
}

