/* public/css/styles.css */

/* Global Styles */

/* Fix for body scrolling issues */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #6D4E00;
}

/* Ensure the container fits within the viewport */
.container-fluid {
    padding: 0;
}

/* Add padding to main container on smaller screens */
@media (max-width: 576px) {
    .container-lg {
        padding: 15px; /* Add some breathing space */
    }
}


div {
    padding: 0; /* Ensures no extra padding */
    text-align: center; /* Center text alignment */
    background-color: #bfd1e4;/* Consistent background for all divs */
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: #0056b3; /* Maintain readability with a darker shade of blue */
    margin-top: 20px; /* Add spacing for readability */
    margin-bottom: 10px; /* Ensure spacing below headings */
    text-align: center; /* Center-align all headings for consistency */
}

/* Paragraph Styles for Readability */
p {
    line-height: 1.6; /* Increase line height for readability */
    margin: 10px 0; /* Add spacing between paragraphs */
    color: #333; /* Keep paragraph text dark and readable */
}

/* Image Styles */
img {
    width: 40%; /* Default image width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
    margin: 0 auto; /* Center images */
    display: block; /* Ensures no extra spacing or alignment issues */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    img {
        width: 70%; /* Make images larger on smaller screens */
    }
    body {
        font-size: 14px; /* Slightly reduce font size for smaller screens */
    }
    div {
        padding: 10px; /* Add padding for better spacing on mobile */
    }
}

/* Mobile-Specific Adjustments */
@media (max-width: 576px) {
    h1, h2, h3 {
        font-size: 1.5rem; /* Reduce heading sizes for mobile */
    }
    p {
        font-size: 0.9rem; /* Adjust paragraph font size */
        padding: 0 15px; /* Add horizontal padding for readability */
    }
    img {
        width: 90%; /* Make images almost full width on smaller screens */
    }
}

/* Custom Button Styling */
button {
    background-color: #0056b3; /* Button background color */
    color: #fff; /* White text for contrast */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #003d80; /* Darker shade on hover */
    transition: 0.3s ease; /* Smooth transition */
}

/* General Header Styles */
.header-custom {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #bed1e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column; /* Stack logo and text vertically */
    align-items: center; /* Center items horizontally */
    margin-left: 50px;
    margin-top: 40px; /* Adjust logo position for large screens */
}

.logo {
    width: 70px; /* Default size of the logo */
    height: auto;
    margin-bottom: 15px; /* Increase gap between logo and text */
}

.logo-section p {
    font-size: 12px; /* Slightly smaller slogan text */
    color: #8E6800;
    text-align: center; /* Center-align the slogan */
    margin-top: 0; /* Remove top margin to bring the text closer to the logo */
}

/* Navbar Styles */
.navbar {
    border-bottom: 1px solid #6D4E00; /* Thin border between navbar and body */
    margin-top: 10px; /* Added space between header and navbar */
}

.navbar-nav .nav-link {
    font-weight: 400;
    color: #6D4E00;
    margin-right: 15px;
    text-decoration: none;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    color: #6D4E00;
}

.navbar-nav .nav-link.active {
    background-color: #FFD700;
    color: #8E6800;
    border-radius: 5px;
    padding: 5px 10px;
}

/* Call Session Button */
.call-session a {
    display: inline-block;
    background-color: #bed1e4;
    border: 2px solid #5fb8e5;
    border-radius: 8px;
    padding: 6px 10px; /* Reduced size */
    color: #8E6800;
    font-weight: bold;
    text-decoration: none;
    font-size: 12px; /* Smaller font for button */
}

.call-session a:hover {
    background-color: #e0f7ff;
    border-color: #00aaff;
    color: #005580;
}

/* Language Switcher */
.language-switcher .lang-icon {
    width: 16px; /* Smaller flag icon */
    height: 16px;
    margin-right: 5px;
}

.language-switcher a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 12px; /* Smaller text for language switcher */
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Logo Adjustments */
    .logo-section {
        margin-left: 10px; /* Reduce left margin on smaller screens */
    }
    .logo {
        width: 50px; /* Smaller logo size for mobile */
    }

    /* Increase gap between logo and text */
    .logo-section p {
        font-size: 10px; /* Reduce text size on mobile */
        margin-top: 10px; /* Add more space between logo and text */
    }

    /* Navbar Links */
    .navbar-nav .nav-link {
        font-size: 14px; /* Smaller font size for mobile */
        margin-right: 10px;
    }

    /* Call Session Button */
    .call-session {
        margin-top: 10px; /* Add margin for spacing */
    }
    .call-session a {
        padding: 4px 6px; /* Smaller button size */
        font-size: 8px; /* Smaller font for button */
    }

    /* Language Switcher */
    .language-switcher a {
        font-size: 8px; /* Smaller font for language links */
    }
    .language-switcher .lang-icon {
        width: 12px; /* Smaller flag icon for mobile */
        height: 12px;
    }
}

/* End of Header Section Styles */



/* Left Side Content Section */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #bed1e4;
    margin-left: 10px;
}

/* Bold Text Section */
.bold-text {
    font-weight: bold;
    text-align: left; /* Ensures left alignment */
    background-color: #bed1e4;
    font-size: 40px;
    line-height: 1.5;
    color: #8E6800;
    margin-bottom: 0;
    padding: 10px 20px; /* Spacing around the text */
    display: inline-block; /* Ensures background wraps the text only */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bold-text {
        font-size: 30px; /* Adjust font size for smaller screens */
    }
}


/* Download Button */
/* General Container */
.video-text-section {
    display: flex;
    align-items: center; /* Aligns items vertically in center */
    gap: 10px; /* Closer space between image and text */
    justify-content: center; /* Centers both sides */
    padding: 20px;
    margin-bottom: 20px;
    background-color: #bed1e4;
}

/* Tagline Container */
.tagline {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1px;
    color: #2C3E50; /* Strong dark color */
    text-align: center; /* Center-align all text */
    margin: 20px auto; /* Space around the section */
    max-width: 700px; /* Restrict width for better readability */
    line-height: 1.5;
    background-color: #bed1e4; /* Light blue background */
}

/* Headline */
.tagline h2 {
    font-size: 40px;
    color: #170359; /* Strong contrasting color for the heading */
    margin-bottom: 10px;
}

/* Paragraph Text */
.tagline p {
    font-size: 25px;
    line-height: 1.5; /* Spacing between lines */
    margin: 10px 0 -10px; /* Adjust spacing for better flow */
}

/* Span Text */
.tagline span {
    display: block; /* Ensures it starts on a new line */
    font-size: 20px;
    color: #8E6800; /* Complementary color for emphasis */
    margin-top: 10px;
}

/* Optional Decorative Pseudo-elements */
.tagline::before,
.tagline::after {
    content: '';
    display: block; /* Pseudo-elements for styling if needed */
    font-size: 30px;
    color: #8E6800;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tagline {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .tagline h2 {
        font-size: 30px; /* Smaller headline font size */
    }

    .tagline p {
        font-size: 20px; /* Smaller paragraph font size */
    }

    .tagline span {
        font-size: 18px; /* Adjust span font size */
    }
}


/* QR Code and Playstore Section */
.qr-playstore {
    background-color: #bed1e4;
    margin-top: 20px;
    padding: 10px; /* Optional padding */
    border-radius: 10px; /* For a rounded container */
}

.qr-code img,
.playstore-logo img {
    width: 150px; /* Default size for larger screens */
    height: auto;
    max-width: 100%; /* Ensure the image doesn't exceed its container */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .qr-code img,
    .playstore-logo img {
        width: 100px; /* Smaller size for mobile screens */
    }
}

/* Video Section */
.video-container-home{
    flex: 1;
    max-width: 350px; /* Limit the maximum width of the video */
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #bed1e4;
}

.video-container-home video {
    width: 100%;
    max-width: 500px;
}



/* Responsive Design */
@media (max-width: 900px) {
    .video-text-section {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        margin: 20px 0;
        width: 100%;
    }
}


/* Styles for the dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9; /* Slightly off-white to distinguish from page background */
    min-width: 160px;
    max-width: 300px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    padding: 12px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333; /* Dark text color for readability */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mySlides {
    display: none;
    width: 100%;
    height: auto;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}



/* Styles for the video */

video {
    width: 100%; /* Make the video responsive */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #333; /* Solid border */
    border-radius: 10px; /* Rounded corners */
}

/* Adjusting media queries if needed */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        font-size: 18px; /* Smaller font size on smaller devices for headings */
    }

    p {
        font-size: 14px; /* Smaller text on mobile devices */
    }

    .video-container {
        width: 100%; /* Full width on smaller screens */
    }

    video {
        max-width: 100%; /* Ensure video doesn't exceed container width */
    }
}

ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    text-align: center; /* Centers the text and the custom bullet */
}

li {
    display: inline-block; /* Makes list items line up in a block with centered text */
    text-align: left; /* Aligns text to the left within the centered block if needed */
    width: 100%; /* Takes full width to maintain text alignment consistency */
    margin-bottom: 10px; /* Space between items */
}

/* Optionally, you can add custom bullets back in with pseudo-elements if needed */
li::before {
    content: '•'; /* Custom bullet */
    color: black; /* Bullet color */
    display: inline-block; /* Aligns bullet within the line */
    width: 20px; /* Provides space for the bullet */
    margin-left: -20px; /* Aligns bullet outside the text */
}


/* Main Text Content Section */

.main-section {
    text-align: center; /* Center the title */
}


/* Title Section */
.title-section {
    text-align: center;
    margin-top: 40px;
    background-color: #bed1e4; /* Optional background */
}

.title-section .title {
    font-size: 35px; /* Default size for larger screens */
    line-height: 1.5;
    color: #8E6800;
    background-color: #bed1e4; /* Match the section's background */
    padding: 10px 20px; /* Adds space around the text */
    display: inline-block; /* Ensure the background color wraps text only */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 5px auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .title-section .title {
        font-size: 25px; /* Adjust font size for tablets/small screens */
        padding: 8px 15px; /* Reduce padding */
    }
}

@media (max-width: 576px) {
    .title-section .title {
        font-size: 20px; /* Smaller font size for very small screens */
        padding: 6px 10px; /* Reduce padding further */
    }
}


/* Content Container */
.content-container {
    display: flex; /* Use flexbox to align the image and text side by side */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    background-color: #8E6800;
    padding: 20px;
}

/* Left Side - Image */
.left-side {
    position: relative;
    flex: 1;
    background-color: #8e6800;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    max-width: 300px; /* Max width for large screens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
    transition: box-shadow 0.3s ease, transform 0.2s ease-in-out;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hover Effects for Image */
.image-container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    transform: translateY(-2px); /* Lift on hover */
}

/* Caption Overlay */
.caption-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(62, 58, 58, 0.5);
    color: #fff;
    text-align: center;
    border-radius: 0 0 5px 5px;
    padding: 10px;
}

/* Caption Text Style */
.caption-overlay p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust image max-width for smaller screens */
    .image-container {
        max-width: 80%;
    }

    /* Optional: Adjust margin and padding for mobile screens */
    .content-container {
        padding: 15px;
    }

    .left-side {
        margin-bottom: 15px; /* More space at the bottom */
    }
}

@media (max-width: 576px) {
    /* Adjust image size on very small screens */
    .image-container {
        max-width: 100%;
    }

    .caption-overlay {
        padding: 8px; /* Smaller padding for smaller screens */
    }

    .caption-overlay p {
        font-size: 12px; /* Smaller font size for small screens */
    }
}

/* Right Side - Description Text Box */
.right-side {
    flex: 1;
    padding: 20px;
    background-color: #e0f7ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
    transition: box-shadow 0.3s ease, transform 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; /* Centering the text */
    text-align: center;
    margin-left: 20px; /* Small space between text box and image */
    margin-right: 20px; /* Adjusted for better spacing */
    max-width: calc(100% - 40px); /* Keeps text box away from right edge */
}

/* Hover Effect for Right Side */
.right-side:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Description Text */
.description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust padding for medium screens (tablets) */
    .right-side {
        padding: 15px; /* Slightly smaller padding */
        margin-left: 0; /* Remove margin on smaller screens */
        margin-right: 0; /* Remove margin on smaller screens */
    }

    .description {
        font-size: 16px; /* Adjust font size for readability on smaller screens */
    }
}

@media (max-width: 576px) {
    /* Adjust padding and font size for smaller screens */
    .right-side {
        padding: 10px; /* Smaller padding on mobile screens */
    }

    .description {
        font-size: 14px; /* Smaller font size for mobile */
    }
}


/* Features Container */
.features-container {
    margin-top: 60px;
    background-color: #bed1e4;
}

/* Feature Title */
.features-title {
    font-size: 24px;
    color: #8E6800;
    font-weight: bold;
    padding-top:50px;
    padding-bottom: 20px;
}
/* Features List */
.features-list {
    display: flex;
    justify-content: center; /* Center the feature boxes horizontally */
    gap: 20px; /* Add space between the feature boxes */
    background-color: #bed1e4;
}

/* Individual Feature Box */
.feature-box {
    background-color: #f9fbfc;
    border: 2px solid #8E6800;
    padding: 20px;
    width: 250px; /* Width of each box */
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Add slight shadow */
    transition: transform 0.3s, background-color 0.3s; /* Smooth hover effect */
    margin-left: 0px;
    margin-bottom: 50px;
}

/* Hover Effect on Feature Box */
.feature-box:hover {
    background-color: #8E6800; /* Change background on hover */
    color: white; /* Change text color on hover */
    transform: translateY(-10px); /* Lift the box up slightly */
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}


/* end of Main Text Content Section */

/*features and slideshows layout */
img {
    vertical-align: middle;
  }

  /* Main container for features and slideshow */
  .feature-section {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space between features and slideshow */
    align-items: flex-start; /* Align items to the top */
    margin: 30px auto; /* Margin for top/bottom */
    max-width: 1200px; /* Limit maximum width */
  }

  /* Middle Title */
  .section-title {
    text-align: center;
    flex: 1; /* Adjust width for the title */
    margin-top: 60px; /* Space on the sides */
    margin-bottom: 0px;
  }

  .section-title h2 {
    font-size: 35px; /* Font size for title */
    color: #8E6800; /* Color for the title */
    font-weight: bold;
    text-transform: uppercase; /* Uppercase for emphasis */
  }

  /* Slideshow container */
.slideshow-container {
    flex: 1; /* Take available space on the right */
    max-width: 300px; /* Max width for slideshow */
    position: relative; /* Required for positioning navigation buttons */
    margin: auto; /* Center align */
    overflow: hidden; /* Ensure no overflow */
    border: 2px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide any overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Center the buttons vertically */
    width: auto;
    padding: 16px;
    margin-top: -22px; /* Center the buttons vertically */
    color:  #8E6800;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none; /* Prevent text selection */
    z-index: 10; /* Ensure buttons are on top */
}

/* Position the "next button" to the right */
.next {
    right: 10px; /* Align to the right with a slight margin */
    border-radius: 3px 0 0 3px; /* Left rounding */
}

/* Position the "previous button" to the left */
.prev {
    left: 10px; /* Align to the left with a slight margin */
    border-radius: 3px 3px 0 0; /* Right rounding */
}

/* On hover, add a black background color with a bit of transparency */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Hover effect */
}

/* Adjusting the img in slides to make sure they fit */
.mySlides img {
    width: 100%; /* Make the images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: add rounded corners to images */
}


  /* Caption text */
  .text {
    color: #f2f2f2; /* Caption color */
    font-size: 15px; /* Caption size */
    padding: 8px 12px; /* Padding */
    position: absolute; /* Positioning */
    bottom: 8px; /* Bottom alignment */
    width: 100%; /* Full width */
    text-align: center; /* Center text */
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer; /* Pointer cursor */
    height: 15px; /* Dot height */
    width: 15px; /* Dot width */
    margin: 0 2px; /* Margin */
    background-color: #bbb; /* Dot color */
    border-radius: 50%; /* Circular shape */
    display: inline-block; /* Inline block */
    transition: background-color 0.6s ease; /* Transition */
  }

  .active,
  .dot:hover {
    background-color: #717171; /* Active and hover color */
  }

  /* Fading animation */
  .fade {
    animation-name: fade; /* Animation */
    animation-duration: 1.5s; /* Duration */
  }

  @keyframes fade {
    from {
      opacity: 0.4; /* Start transparency */
    }
    to {
      opacity: 1; /* End transparency */
    }
  }

  /* Responsive adjustment for smaller screens */
  @media only screen and (max-width: 600px) {
    .prev,
    .next,
    .text {
      font-size: 11px; /* Smaller font size */
    }

    /* Stack the feature section vertically on small screens */
    .feature-section {
      flex-direction: column; /* Stack items */
    }

    .slideshow-container {
      max-width: 100%; /* Full width */
    }
  }

  /* Feature Text */
  .feature-text {
    flex: 1; /* Take available space on the left */
    padding: 20px; /* Padding */
    margin-right: 20px; /* Space on the right */
    background-color: #f0f8ff; /* Sky-blue background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Shadow */
    font-family: Arial, sans-serif; /* Font family */
    max-width: 600px;
  }

  .feature-item {
    background-color: #f9fbfc; /* Light sky blue background */
    border: 2px solid #008cba; /* Sky blue border */
    padding: 15px; /* Padding */
    margin: 10px 0; /* Space between items */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* 2D box shadow */
    border-radius: 8px; /* Rounded corners */
    color: #333; /* Text color */
    font-size: 16px; /* Text size */
  }

  .feature-item:hover {
    border-color: #005f8a; /* Darker blue on hover */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }

/* Main container for three-part layout */
.three-part-section-main {
     background-color:  #8E6800;
  }
.three-part-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 60px;
    background-color:  #8E6800;
  }

  /* Left Side - Who Are We */
  .who-we-are {
    flex: 1;
    margin-right: 20px;
    background-color:  #8E6800;

  }

  .who-we-are h2 {
    font-size: 24px;
    color: #fffefe;

  }

  .who-we-are p {
    font-size: 16px;
    color: #fffefe;
    line-height: 1.6;
    background-color:  #8E6800;
  }


/* Middle - Company Info */
.company-info {
    text-align: center; /* Center the heading and links */
    background-color:  #8E6800;
  }

  .company-info h3 {
    font-size: 20px;
    color: #fffefe;
    margin-bottom: 10px;

  }

  .company-links {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensure links are centered */
    background-color:  #8E6800;
  }

  .company-links a {
    text-decoration: none;
    color: #fffefe;
    font-size: 16px;
    margin: 5px 0; /* Add spacing between links */
  }

  .company-links a:hover {
    text-decoration: underline;
  }


/* Right Side - Logo, Tagline, Play Store, and Social Media */

.logo-section .logo {
    max-width: 75px; /* Smaller logo */
    margin-bottom: 0px;
}

.logo-section .tagline {
    font-size: 14px; /* Slightly smaller text */
    color: #fffefe;
    margin-bottom: 5px;
    margin-top: 2px;
    background-color: #8E6800;
}

.playstore-section {
    display: flex;
    flex-direction: row; /* Side by side for playstore logo and QR code */
    justify-content: center;
    align-items: center;
    gap: 5px; /* Add space between playstore logo and QR code */
    margin-bottom: 5px;
   background-color: #8E6800;
}

.playstore-section .playstore-logo,
.playstore-section .qr-code {
    max-width: 90px; /* Smaller playstore logo and QR code */
}

.social-media-icons {
    display: flex;
    justify-content: center;
    margin-top: 1px;
    background-color: #bed1e4;
}

.social-media-icons a {
    margin: 0 5px; /* Less margin between icons */
}

.social-media-icons img {
    width: 28px; /* Smaller icons */
    height: 28px;
}

/* Responsive design */
@media (max-width: 900px) {
    .three-part-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .who-we-are, .company-info, .logo-section {
        margin-right: 0;
        margin-bottom: 20px; /* Adjust margin for smaller screens */
    }

    .playstore-section {
        flex-direction: row; /* Keep playstore and QR code side by side */
        justify-content: center;
    }
}




.social-media-icons-footer {
    display: flex;
    justify-content: center;
    margin-top: 1px;
    background-color: #8E6800;
}

.social-media-icons-footer a {
    margin: 0 5px; /* Less margin between icons */
}

.social-media-icons-footer img {
    width: 28px; /* Smaller icons */
    height: 28px;
}
/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fffefe; /* Footer background color */
    color:#8E6800; /* Footer text color */
    font-size: 14px; /* Footer text size */
}


footer {
    background-color: #bfd1e4; /* Light background color for the footer */
    padding: 20px; /* Add padding for spacing */
    text-align: center; /* Center-align text in the footer */
    position: relative; /* Positioning context for the line */
}

/* Footer content style */
.footer-content {
    display: flex;
    flex-direction: column; /* Stack the line and text vertically */
    align-items: center; /* Center items horizontally */
}

/* Line above the text */
.footer-line {
    width: 100%; /* Full width line */
    height: 3px; /* Line thickness */
    background-color: skyblue; /* Sky blue color */
    margin-bottom: 10px; /* Space between line and text */
}

/* Footer text style */
.footer-text {
    font-size: 16px; /* Adjust font size as needed */
    color: #333; /* Text color */
}

/* Payment banner style */

.payment-banner-container {
    text-align: center;
    margin-top: 10px;
}

.payment-banner {
    max-width: 400%;
    height: auto;
    width: 100%;
}

/* Payment banner image styles */

/* logins css */
.login-container {
    margin-top: 80px;
    margin-bottom: 80px;
}
