/* General Styles */

/* ---------------------------------------------------------------- BODY ------------------------------------------------------------------*/

        body {
            margin: 0; /* Remove default margin */
            padding: 0; /* Remove default padding */
            line-height: 1.2; /* Set line height for readability */
            color: #d3d3d3; /* Light grey text for general text */
            background: url('images/bg.webp') no-repeat center center fixed; /* Background image, centered and fixed */
            background-size: cover; /* Ensure background covers entire page */
            max-width: 100%; /* Ensure the body stretches across the full width */
        
        }
        
        /* Font family */
            
            
            /* Light Font (300) - Used as standard */
                @font-face {
                    font-family: 'ZenKakuGothicNew'; /* Font name */
                    src: 
                        url('fonts/ZenKakuGothicNew-Light.woff2') format('woff2'); /* Path to light .woff2 font file */
                    font-weight: 300; /* Standard font weight */
                    font-style: normal; /* Normal style */
                    font-display: swap;
                }
                
                            /* Regular Font (400) - Used a bold */
                @font-face {
                    font-family: 'ZenKakuGothicNew'; /* Font name */
                    src: 
                        url('fonts/ZenKakuGothicNew-Regular.woff2') format('woff2'); /* Path to regular .woff2 font file */
                    font-weight: 400; /* Bold font weight */
                    font-style: normal; /* Normal style */
                    font-display: swap;
                }
                
                
            /* Global Font Styling */
                body {
                    font-family: 'ZenKakuGothicNew', Arial, sans-serif; /* Use custom font with fallbacks */
                    font-weight: 300; /* Default weight */
                }
                
            /* Strong/Bold Text Styling */
                strong, b {
                    font-family: 'ZenKakuGothicNew', Arial, sans-serif; /* Ensure font-family consistency */
                    font-weight: 400; /* Use bolder weight */
                }


        
/* ------------------------------------------- LINK STYLING ---------------------------------------------*/
        
        /* Link styling */
        a {
            color: orange; /* Set color for links */
            text-decoration: none; /* Remove underline from links */
            transition: color 0.3s ease; /* Smooth color transition on hover */
        }
        
        a:hover {
            color: white; /* Change link color to white on hover */
            text-decoration: underline; /* Underline the link on hover */
        }
        
        
/* ------------------------------------------- HEADER ---------------------------------------------*/
        
    /* Header Styles */
        header {
            position: relative; /* Set position relative for positioning child elements */
            height: 100vh; /* Full viewport height */
            display: flex; /* Use flexbox for layout */
            align-items: center; /* Center content vertically */
            justify-content: center; /* Center content horizontally */
            text-align: center; /* Center text within header */
            padding-top: 0rem; /* No padding added to the top */
        }
        
    /* Header content - text (no background) */
        .header-content {
            padding: 2rem 3rem; /* Padding inside the content block */
            color: #d3d3d3; /* Light grey text */
            width: auto; /* Let width adjust automatically */
            max-width: 100%; /* Ensure width does not exceed 100% */
        }
        
    /* Header h1 and p styling */
        header h1 {
            font-size: 4rem; /* Set large font size for header */
            color: orange; /* Orange color for the header */
            margin: 0; /* Remove default margin */
        }
        
        header p {
            font-size: 2rem; /* Set font size for paragraph */
            color: #d3d3d3; /* Light grey text */
            margin-top: 10px; /* Add margin to the top */
        }
        
        
/* ------------------------------------------- NAVIGATION ---------------------------------------------*/
        
    /* Navigation Menu */
        
        /* Background */
            nav {
                background: rgba(0, 0, 0, 0.7); /* Transparent black background */
                padding: 15px 0; /* Padding for top and bottom */
                width: 100%; /* Make sure nav stretches across the screen */
            }
            
        /* Headers */
            nav ul {
                list-style: none; /* Remove default list bullets */
                padding: 0; /* Remove padding */
                margin: 0; /* Remove margin */
                display: flex; /* Use flexbox for horizontal layout */
                justify-content: center; /* Center the navigation items */
            }
           
            nav ul li {
                margin: 0 90px; /* Horizontal spacing between list items */
            }
            
            nav ul li a {
                text-decoration: none; /* Remove underline from links */
                font-size: 1.5rem; /* Set font size for links */
                padding: 15px 15px; /* Padding around the links */
            }
            
            nav ul li a:hover {
                background: #555; /* Darken background on hover */
                border-radius: 2px; /* Round the corners of the link */
            }
        
    /* Navigation Sticky */    
        /* Default navbar styles */
            #navbar {
                position: relative;
                transition: all 0.3s ease;
            }
            
          /* Fixed navbar styles */
            #navbar.fixed {
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }


/* ------------------------------------------- MAIN ---------------------------------------------*/
        
    /* Main Content */
        main {
            padding: 20px; /* Padding inside the main content */
            background: rgba(0, 0, 0, 0.7); /* Transparent black background */
            margin: 20px auto; /* Center main content with margins */
            max-width: 1000px; /* Limit width to 800px */
            box-shadow: 0 2px 10px rgba(100, 100, 100, 1); /* Add subtle white shadow around main content */
            border-radius: 2px; /* Rounded corners */
        }
        
        main h2 {
            font-size: 2.5rem; /* Set font size for section headings */
            color: orange; /* Orange for subheadings */
            border-bottom: 1px solid rgba(244, 244, 244, 0.8); /* Underline Sections with light border must have solid to show */
            padding-bottom: 10px; /* Padding below the heading */
            padding-top: 110px; /* Padding above the heading to show from Nav-menu */
            margin-top: -50px; /* Moves the section back up to avoid blank space due to padding */
            text-decoration: none;
        }   
        
        main h3 {
            font-size: 1.5rem; /* Set font size for section headings */
        }
                
        main h4 {
            font-size: 1.5rem; /* Set font size for section headings */
        }
        
        main h5 { /* Contact form must have its own style in order for close button to function (same style as h2 without padding-top and margin-top) */
            font-size: 2.5rem; /* Set font size for section headings */
            color: orange; /* Orange for subheadings */
            border-bottom: 1px solid rgba(244, 244, 244, 0.8); /* Underline Sections with light border must have solid to show */
            padding-bottom: 10px; /* Padding below the heading */
            text-decoration: none;
        }
        
        main p {
            font-size: 18px; /* Set font size for section headings */   
        }
        
/* ------------------------------------------- SECTION IMAGE STYLING ---------------------------------------------*/

    .container {
        display: flex;  /* Space elements evenly within the container */ 
        justify-content: space-between;  /* Center elements vertically within the container */
        align-items: center; /* Center elements vertically within the container */
        margin-bottom: 1rem; /* Add spacing between sections (16px)*/ 
        margin-top: 5rem; /* Add spacing between sections (5x15px)*/
        }
        
        .text-container {
            flex: 1; /* Make the text container flexible */
            margin-right: 0.5rem; /* Add spacing between text and image */
            }
        
        .image-container {  /* Make the image container flexible */
            flex: 1; 
            }
        
        .image-container img {
            max-width: 100%; /* Make the image responsive */
            height: auto; /* Maintain the image's aspect ratio */
            }
        
        .expertise .text-container {
            margin-left: 2rem; /* Add left margin to align text with images above/below */
            }
        
        
/* ------------------------------------------- CONTACT FORM ---------------------------------------------*/
        
    /* Styling for the contact button that triggers the form */
            .contact-btn {
                padding: 10px 10px;  /* Default padding for larger screens */
                font-size: 24px;
                border: 1px solid orange; /* Orange border must have solid to show*/
                border-radius: 2px;
                width: 100%; /* Ensures form takes full width up to max-width */
                background-color: transparent; /* No background fill */
                color: orange; /* Orange text */
                cursor: pointer;
                transition: color 0.3s, border-color 0.3s, background-color 0.3s; /* Smooth transition */
                display: inline-flex; /* Ensures the text is aligned properly */
                justify-content: center; /* Centers text horizontally */
                align-items: center; /* Centers text vertically */
                white-space: nowrap; /* Prevents text from wrapping */
            }
        
    /* Hover effect for the contact button */
        .contact-btn:hover {
            color: white; /* Text color becomes white on hover */
            border-color: white; /* Border color becomes white on hover */
            background-color: rgba(100, 100, 100, 0.4); /* Light white background on hover */
        }
        
    /* Styling for the container of the contact form */
        .contact-form-container {
            display: none; /* Initially hides the container (can be shown with JS) */
            position: fixed; /* Fixes the container relative to the viewport */
            top: 0; /* Positions the container at the top of the viewport */
            left: 0; /* Positions the container at the left of the viewport */
            width: 100%; /* Makes the container span the full width of the viewport */
            height: 100%; /* Makes the container span the full height of the viewport */
            justify-content: center; /* Centers the content horizontally within the container */
            align-items: center; /* Centers the content vertically within the container */
            z-index: 1000; /* Ensures the container appears above other elements */
        }

    /* Styling for the contact form itself */
        .contact-form {
            background: rgba(0, 0, 0, 0.8); /* Transparent black background */
            color: white; /* White text */
            padding: 20px 30px;
            max-width: 400px;
            width: 100%; /* Ensures form takes full width up to max-width */
            border-radius: 2px;
            border: 2px solid white; /* White border must have solid to show */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Slight shadow for depth */
            position: relative;
            display: flex;
            flex-direction: column; /* Ensures elements are stacked vertically */
        }
        
    /* Styling for the labels inside the contact form */
        .contact-form label {
            margin-bottom: 5px;
            font-weight: bold;
            display: block;
            color: #d3d3d3; /* Light grey text for general text */
        }
        
    /* Styling for the input fields and textarea inside the contact form */
        .contact-form input,
        .contact-form textarea {
            padding: 10px;
            margin: 0; /* Remove default margin to make fields symmetrical */
            border: 1px solid #ddd; /* must have solid to show */
            border-radius: 2px;
            font-size: 14px;
            width: 100%; /* Ensure fields take full width of the container */
            box-sizing: border-box; /* Ensures padding doesn't affect width */
        }
        
    /* Styling for the submit button inside the contact form */
        .contact-form button {
            padding: 10px 20px; /* More padding for a button with larger click area */
            font-size: 16px;
            border: 1px solid orange; /* Orange border must have solid to show */
            border-radius: 2px;
            color: orange; /* Orange text */
            background-color: transparent; /* No background fill */
            cursor: pointer;
            transition: color 0.3s, border-color 0.3s; /* Smooth transition for color and border */
            width: 100%; /* Ensure button takes full width of the container */
        }
        
    /* Hover effect for the submit button */
        .contact-form button:hover {
            color: white; /* Text color becomes white on hover */
            border-color: white; /* Border color becomes white on hover */
            background-color: rgba(100, 100, 100, 0.4); /* Light white background on hover */
        }
        
    /* Styling for the close button of the contact form */
        .close-btn {
            padding: 2px 20px; /* Wider padding for a button with larger click area */
            font-size: 20px;
            border: 1px solid orange; /* Orange border must have solid to show */
            border-radius: 2px;
            color: orange; /* Orange text */
            background-color: transparent; /* No background fill */
            cursor: pointer;
            transition: color 0.3s, border-color 0.3s; /* Smooth transition for color and border */
            width: 100%; /* Ensure button takes full width of the container */
            text-align: center;
        }
        
    /* Hover effect for the close button */
        .close-btn:hover {
            color: white;
            border-color: white; /* Border color becomes white on hover */
            background-color: rgba(100, 100, 100, 0.4); /* Light white background on hover */
        }
        
        #contactimg {
          display: block;
          margin-left: auto;
          margin-right: auto;
          padding: 20px;
        }

        
 /* ------------------------------------------- SOCIALS ---------------------------------------------*/       
        
    /* Social icon container */
        .social-icons {
            display: flex; /* Use Flexbox to align items */
            justify-content: center; /* Center icons horizontally */
            padding: none; /* Padding around the container */
        }
        
    /* Style */
        .fa {
            padding: 15px; /* Padding inside the circles */
            font-size: 20px; /* Doesn't seem to do anything in this case */
            width: 20px;
            height: 20px; /* Ensures the icons are circular */
            text-align: center;
            text-decoration: none;
            background: none; /* Transparent */
            color: orange;
            border: 1px solid orange; /* Orange border must have solid to show */
            border-radius: 50%; /* Circular border */
            margin: 20px /* Margin between icons */
        }
        
    /* Hover effect */
        .fa:hover {
            color: white; /* Text color becomes white on hover */
            border-color: white; /* Border color becomes white on hover */
            background-color: rgba(100, 100, 100, 0.4); /* Light white background on hover */
            transition: color 0.3s ease; /* Smooth color transition on hover */
        }
        
        
/* ------------------------------------------- FOOTER ---------------------------------------------*/

 /* Initial hidden state for the cookie banner */
        .cookie-banner {
            display: flex; /* Using flexbox layout */
            flex-direction: column; /* Stacks items vertically */
            align-items: center; /* Centers the content horizontally */
            margin-top: 0; /* Adds space above the cookie banner */
            position: fixed; /* Fixes the cookie banner at the bottom of the page */
            bottom: -100%; /* Hidden below the viewport initially */
            left: 0; /* Stays aligned to the left */
            width: 100%; /* Ensures the cookie banner spans the full width */
            background: black; /* Black background */
            padding: 12px 0; /* Reduce vertical padding */
            z-index: 1000; /* Ensures the cookie banner stays on top of other content */
            text-align: center; /* Centers the content */
            transition: bottom 1.5s ease; /* Slow slide-in and slide-out effect */
        }
        
    /* Show the cookie banner */
        .cookie-banner.visible {
            bottom: 0; /* Move into the viewport */
        }
        
    /* Styling for the paragraph inside the cookie banner */
        .cookie-banner p {
            margin: 0; /* Removes default margin */
            padding: 2px; /* Removes default padding */
            line-height: 1; /* Reduces line spacing */
            color: #d3d3d3; /* Light grey text for general text */
        }
        
    /* Styling for the accept cookies button */
        #accept-cookies {
            margin-top: 10px; /* Reduce spacing above the button */
            padding: 6px 16px; /* Reduce button padding */
            color: orange; /* orange text */
            background-color: transparent; /* No background fill */
            border: 1px solid orange; /* Orange border must have solid to show */
            border-radius: 2px; /* Slightly rounded edges*/
            cursor: pointer;
            transition: color 0.3s, border-color 0.3s; /* Smooth transition for color and border */
            font-size: 16px; /* Adjust font size to match Privacy button/text */
        }
        
        #accept-cookies:hover {
            color: white; /* Text color becomes white on hover */
            border-color: white; /* Border color becomes white on hover */
            background-color: rgba(100, 100, 100, 0.4); /* Light white background on hover */
        }
        
    /* Ensuring full height of the initial section */
        #home {
            height: 100vh; /* Full viewport height */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }
        
    /* Footer */
        footer {
            /* Styling for the footer banner */
            align-items: center; /* Centers the content vertically inside footer */
            justify-content: center; /* Centers the content horizontally inside footer */
            text-align: center; /* Center the footer content */
            background: rgba(0, 0, 0, 0.7); /* Transparent black background */
            padding: 1px 0; /* Reduce vertical padding */
            line-height: 1; /* Reduce line spacing in footer text */
            color: #d3d3d3; /* Light grey text for general text */
            width: 100%; /* Ensure the footer spans the full width of the page */
            margin-top: 0px; /* Reduce space above the footer */
          
        }
        
         /* Styling for the buttons */
        
        button {
          display: inline; 
          font-size: 16px;
          cursor: pointer;
          padding: 5px 5px; /* Reduce vertical padding */
          color: orange; /* Text color */
          background-color: transparent; /* No background fill */
          border: none; /* Remove any border */
          transition: color 0.3s, border-color 0.3s; /* Smooth transitions */
        }
        
        button:hover {
            color: white; /* Text color becomes white on hover */
    }

/* ------------------------------------------- REVIEWS ---------------------------------------------*/

    
    #reviews {
    font-size: 2rem; /* Set large font size for header */
            color: orange; /* Orange color for the header */
            margin: 0; /* Remove default margin */
            text-align: center;
    }
        
    /* Container for the reviews */
        .customer-reviews {
          display: flex;
          justify-content: center; /* Centers the cards */
          background-color: transparent; /* No background */
          margin-bottom: 25px;
        }
        
    /* Individual review card */
        .review-card {
          position: relative; /* For positioning the hover box */
          width: 215px; /* Fixed width for uniformity */
          height: 300px; /* Card height */
          border: 1px solid orange; /* Orange border */
          border-radius: 2px; /* Slightly rounded corners */
          background-color: transparent; /* No background */
          transition: transform 0.3s ease; /* Smooth hover effect */
          overflow: hidden; /* Ensures the hover box doesn't overflow */
          margin: 0 20px; /* Space between cards */
        }
        
        .star-rating {
          font-size: 15px;  /* Size of stars */
          color: gold;      /* Star color */
        }
        
        .rating-header {
          font-size: 28px;  /* Size of stars */
          margin: 30px 0; /* Controlled spacing */
        }

        .review-card:hover {
          transform: translateY(-5px); /* Card moves slightly up on hover */
        }
        
    /* Default content of the card */
        .review-content {
          padding: 5px; /* Space inside the card */
          text-align: center;
        }
        
        .extra-space {
          margin-top: 20px; /* Adds extra space for specific paragraphs */
          font-size: 14px;
   }
        
    /* Hover box for additional details */
        .review-hover-box {
          position: absolute;
          bottom: -100%; /* Hidden by default */
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.9); /* Black transparent background on hover */
          color: white; /* Text color becomes white on hover */
          border: 1px solid white; /* Border color becomes white on hover */
          font-size: 14px;
          text-align: center;
          transition: bottom 0.3s ease; /* Smooth slide-up effect */
          border-radius: 2px; /* Matches the card's corners */
          box-sizing: border-box; /* Ensures padding doesn't overflow */
          padding: 14px;
        }
        
        .review-card:hover .review-hover-box {
          bottom: 0; /* Slide up into view on hover */
        }
  
  
/* ------------------------------------------- MEDIA QUERIES FOR RESPONSIVENESS ---------------------------------------------*/


     /* Adjust layout for larger screens (landscape mode and above) */
            @media (min-width: 768px) and (max-width: 1024px) {
        
    /* Navigation Menu */

        nav ul li {
            margin: 0px 40px; /* Horizontal spacing between list items */
            display: inline-flex; /* Ensure the text behaves like a block when wrapped */
            text-align: center; /* Center the text within each item */
            white-space: nowrap; /* Prevents text from wrapping */
            }

        
        
    /* Contact form */    
            .contact-form {
                    flex-direction: row;
                    max-width: 65%; /* Ensure fields take full width of the container */
                    height: 300px;
                 }
                 
        /* Styling for the labels inside the contact form */
            #nameheader {
                margin-top: 40px;
                 /* Light grey text for general text */
            }
            
                 
         /* Styling for the input fields and textarea inside the contact form */
            .contact-form input,
            .contact-form textarea {
                padding: 5px;
                width: 100%; /* Ensure fields take full width of the container */
            }
            
        /* Styling for the submit button inside the contact form */
            .contact-form button[type="submit"] {
                padding: 5px 5px; /* Less padding for a button with small click area */
                width: 100%; /* Ensure button doesn't take full width of the container */
            }
    
            
        /* Styling for the close button of the contact form */
            .close-btn {
                font-size: 20px;
                max-width: 90%;
                height: 30px;
                position: absolute;
            }
            
            
            /* Ensure the "X" is centered within the close button */
            #X {
                line-height: 50%; /* Match the button height to vertically center the text */
            }
    
            /* Ensure the header has no default margin or padding */
            .contact-form h5 {
                margin: 120px 5px; /* Space above the text, space between the header and fields */
                font-size: 34px;
            }
        }
            
 
 
 /* For small devices (max-width: 600px) */
        @media screen and (max-width: 600px) {
            header h1 {
                font-size: 2.5rem; /* Adjust header font size */
            }
            header p {
                font-size: 1.2rem; /* Adjust paragraph font size */
            }
        
        /* Navigation menu */    
            nav {
                padding: 10px 0; /* Padding for top and bottom */
                max-width: 100%; /* Ensure width does not exceed 100% */
            }

        nav ul {
            list-style: none; /* Remove default list bullets */
            padding: 0; /* Remove padding */
            margin: 0; /* Remove margin */
            display: flex; /* Use flexbox for horizontal layout */
            justify-content: center; /* Center the navigation items */
            align-items: center; /* Center items vertically */
            }
        
                nav ul li {
            margin: 0 2px; /* Horizontal spacing between list items */
            display: inline-flex; /* Ensure the text behaves like a block when wrapped */
            text-align: center; /* Center the text within each item */
            }
        
            nav ul li a {
            padding: 5px 10px; /* Padding around the links */

            }
    
        /* Main text */ 
            main {
                max-width: 100%; /* Ensure width does not exceed 100% */
            }
            .contact-btn {
                font-size: 18px; /* Adjust button font size */
                padding: 8px 8px; /* Adjust padding for smaller screens */
            }
            .contact-form {
                padding: 15px 20px; /* Adjust padding for smaller screens */
            }
            footer {
                font-size: 12px; /* Adjust font size for footer */
            }
        }
        
    /* For medium devices (e.g. iphone pro max) (min-width: 601px and max-width: 768px) */
        @media screen and (max-width: 768px) {
            header h1 {
                font-size: 4.5rem; /* Adjust header font size */
            }
            
            header p {
                font-size: 1.8rem; /* Adjust paragraph font size */
            }   
            
            main h2 {
                font-size: 2.4rem; /* Adjust sub-header font size */
            }
            
            main h4 {
                font-size: 1.43rem; /* Adjust header font size */
            }
            
            .contact-btn {
                font-size: 20px; /* Adjust button font size */
                padding: 10px 15px; /* Adjust padding for medium screens */
            }
            .contact-form {
                padding: 18px 25px; /* Adjust padding for medium screens */
            }
        
        /* Navigation menu */    
            nav {
                padding: 10px 0; /* Padding for top and bottom */
                max-width: 100%; /* Ensure width does not exceed 100% */
            }

            nav ul {
                list-style: none; /* Remove default list bullets */
                padding: 0; /* Remove padding */
                margin: 0; /* Remove margin */
                display: flex; /* Use flexbox for horizontal layout */
                justify-content: center; /* Center the navigation items */
                align-items: center; /* Center items vertically */
                }
            
                    nav ul li {
                margin: 0 2px; /* Horizontal spacing between list items */
                display: inline-flex; /* Ensure the text behaves like a block when wrapped */
                text-align: center; /* Center the text within each item */
                }
            
                nav ul li a {
                padding: 5px 10px; /* Padding around the links */
    
                }
        
            /* Main text */ 
                main {
                    max-width: 100%; /* Ensure width does not exceed 100% */
                }
                .contact-btn {
                    font-size: 18px; /* Adjust button font size */
                    padding: 8px 8px; /* Adjust padding for smaller screens */
                }
                .contact-form {
                    padding: 15px 20px; /* Adjust padding for smaller screens */
                }
                footer {
                    font-size: 12px; /* Adjust font size for footer */
                }
            }

        /* Image Layout */
        
        /* For all mobile devices (max-width: 767px) */
        @media screen and (max-width: 767px) {
            
            /* About VUR Web Consulting text */
            #about {
            text-align: justify; /* Stretches the lines so that each line has equal width */
            }
            
            /* Why VUR Section: Image first, then text */
            .why-vur.container {
                display: flex;
                flex-direction: column; /* Stack image first, then text */
                align-items: center; /* Center all items */
            }
        
            .why-vur .image-container {
                order: 1; /* Ensure image comes first */
                margin-bottom: 1rem; /* Space below image */
            }
        
            .why-vur .text-container {
                order: 2; /* Text comes after image */
                width: 100%; /* Ensure text-container takes full width */
                text-align: justify; /* Stretches the lines so that each line has equal width */
            }
        
            .why-vur .image-container img {
                max-width: 100%; /* Make the image responsive */
                height: auto; /* Maintain aspect ratio */
            }
        
            /* Expertise Section: Image first, then text */
            .expertise.container {
                display: flex;
                flex-direction: column; /* Stack image first, then text */
            }
        
            .expertise .image-container {
                order: 1; /* Ensure image comes first */
                margin-bottom: 1rem; /* Space below image */
            }
        
            .expertise .text-container {
                order: 2; /* Text comes after image */
                margin: 0;           /* No margin */
                padding: 0; 
                width: 100%; /* Ensure text-container takes full width */
                text-align: justify; /* Stretches the lines so that each line has equal width */
            }
        
            .expertise .image-container img {
                max-width: 100%; /* Make the image responsive */
                height: auto; /* Maintain aspect ratio */
            }
        
            /* Process Section: Image first, then text */
            .process.container {
                display: flex;
                flex-direction: column; /* Stack image first, then text */
                align-items: center; /* Center all items */
            }
        
            .process .image-container {
                order: 1; /* Ensure image comes first */
                margin-bottom: 1rem; /* Space below image */
            }
        
            .process .text-container {
                order: 2; /* Text comes after image */
                width: 100%; /* Ensure text-container takes full width */
                text-align: justify; /* Stretches the lines so that each line has equal width */
            }
        
            .process .image-container img {
                max-width: 100%; /* Make the image responsive */
                height: auto; /* Maintain aspect ratio */
            }
        }
          
        
    /* ---------------- Mobile View Rating Carousel ---------------- */
    
    /* For all mobile devices (max-width: 767px) */
    @media screen and (max-width: 767px) {
    
      /* Wrapper for the review cards */
        .customer-reviews-wrapper {
          overflow: hidden; /* Ensures only one card shows */
          max-width: 100%;      /* Full width of the container */
        }
              
      /* Adjust the reviews container */
        .customer-reviews-container {
         display: flex; /* Click to view full content */
         overflow-x: auto; /* Enable horizontal scrolling */
         -webkit-overflow-scrolling: touch; /* Enable smooth scrolling for mobile */
         justify-content: center; /* Center the content horizontally */
        }
        
             /* Use padding to simulate the effect of centering the first card */
      .customer-reviews-container::before {
        content: "";
        flex: 0 0 15%; /* No grow; no shrink; Add space on the left to center the first card */
      }
    
     /* Use padding to add some space after the last card */
      .customer-reviews-container::after {
        content: "";
        flex: 0 0 15%; /* No grow; no shrink; Add space on the right of the lastcard */
      }
    
      
      /* Stars */
      .star-rating {
        text-align: center;
      }
    
      .rating-header {
        font-size: 18px;
        margin: 30px 0;
      }
    
      /* Default content of the card */
      .review-content {
        padding: 5px;
        text-align: center;
        font-size: 12px;
      }
    
      /* Client and Date */
      .extra-space {
        text-align: center;
        font-size: 10px;
      }
    
      /* Hover box for additional details */
      .review-hover-box {
        font-size: 12px;
        text-align: center;
        padding: 14px;
      }
    }
