/* General Body Styles */
body {
    background-color: #F7F7F7;
    /* Soft White */
    color: #003366;
    /* Dark Navy for text */
    margin: 0;
    padding: 0;
}

.navbar.sticky-top {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    z-index: 1030;
    /* Ensure it stays above other elements */
}

/* Navbar Styling */
.navbar-hidden {
    transform: translateY(-100%);
    /* Hide the navbar by moving it up */
    transition: transform 0.3s ease;
    /* Smooth transition for showing/hiding */
}

.navbar-shown {
    transform: translateY(0);
    /* Show the navbar */
    transition: transform 0.3s ease;
}

/* Ensure hover makes it visible */
.navbar:hover {
    transform: translateY(0);
    /* Show the navbar when hovered */
}


/* Navbar Styles */
.navbar {
    background-color: rgb(1, 56, 64);
    /* Teal base */
    padding: 1rem;
}

.nav-link {
    color: #FFFFFF;
    /* White text for links */
    transition: color 0.3s ease;
    /* Smooth transition for hover effect */
}

.nav-link:hover {
    color: #008080;
    /* Teal hover */
}

.navbar-toggler {
    border-color: #87CEEB;
    /* Sky Blue for toggle */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Button Styles */
.btn-primary {
    /* Dark Navy */
    color: #FFFFFF;
    /* White text */
    border: none;
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
}


/* Footer Styles */
footer {
    background-color: #B2BEB5;
    /* Sage Green */
    color: #FFFFFF;
    /* White text */
    padding: 1.5rem 0;
    text-align: center;
}

.footer-link {
    color: #FFFFFF;
    /* White text for footer links */
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    /* Smooth transition for hover effect */
}

.footer-link:hover {
    color: #87CEEB;
    /* Sky Blue hover effect */
}

/* Section Backgrounds */
.section {
    background-color: #F7F7F7;
    /* Soft White */
    padding: 2rem 0;
}

/* Text Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #003366;
    /* Dark Navy for headers */
}

p {
    color: #4F4F4F;
    /* Dark Gray for paragraph text for better readability */
}

/* Card Styles */
.card {
    border: 1px solid #B2BEB5;
    /* Sage Green */
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #003366;
    /* Dark Navy for card titles */
}

.card-text {
    color: #4F4F4F;
    /* Dark Gray for card text */
}

/* Form Styles */
.form-control {
    border: 1px solid #B2BEB5;
    /* Sage Green border */
    border-radius: 0.25rem;
    transition: border-color 0.3s ease;
    /* Smooth transition for focus effect */
}

.form-control:focus {
    border-color: #87CEEB;
    /* Sky Blue on focus */
    box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
    /* Light glow on focus */
}

/* Links */
a {
    color: #87CEEB;
    /* Sky Blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
    /* Smooth transition for hover effect */
}

a:hover {
    color: #003366;
    /* Dark Navy on hover */
}

/* Custom Elements */
.custom-bg {
    background-color: #87CEEB;
    /* Sky Blue for custom elements */
    color: #FFFFFF;
    /* White text */
    padding: 1rem;
    border-radius: 0.5rem;
}

.custom-border {
    border: 2px solid #B2BEB5;
    /* Sage Green */
    border-radius: 0.5rem;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    background: url('images/hero-image.png') no-repeat center bottom/cover;
    height: 100vh;
    display: flex;
    align-items: flex-start	;
    justify-content: flex-start;
}

/* Overlay Around Text */
.blur-overlay {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    /* Semi-transparent white for a lighter feel */
    backdrop-filter: blur(10px);
    /* Subtle blur effect */
    padding: 2rem 3rem;
    border-radius: 1rem;
    /* Rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Light shadow for depth */
    z-index: 2;
}
/* Text Styling */
.hero-title {
    font-size: 2.8rem;
    /* Larger, readable size */
    font-weight: bold;
    color: #fff;
    /* Soft white shadow for pop */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #003366;
    /* Dark Navy */
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    /* Subtle shadow */
}

/* Button Styling */
.btn-primary {
    background-color: #F7941D;
    /* Orange for CTA */
    border: none;

}

.features-section {
    background: url('images/iloq-door.jpeg') no-repeat center center;
    /* Light background for contrast */
    color: #003366;
    /* Dark Navy for text */
    padding: 3rem 0;
    background-size: cover;
        border-top: 5px solid #F7941D;
    /* Orange top border */
    /* Orange bottom border */
}

.features-section h2 {
    color: #003366;
    /* Dark Navy */
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);

}

.features-section p {
    color: #4F4F4F;
    /* Dark Gray for better readability */
    font-size: 1.2rem;
}

.features-section p.overlaytxt {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    color: #003366;
}

.feature-icon i {
    font-size: 3rem;
    /* Large icon size */
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    /* Smooth hover effect */
}

.feature-icon i:hover {
    transform: scale(1.2);
    /* Slight zoom on hover */
}


.features-section h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #003366;
    /* Dark Navy */
}

.features-section p {
    font-size: 1.2rem;
    color: #4F4F4F;
    /* Dark Gray */
}

.integrations-section {
  /* ensure the container has a known height; you can also use min-height */
  height: 100vh;              /* example: 60% of viewport height */
  position: relative;        /* for absolute children */
    background: url('images/iloq-demo.png') no-repeat center center;
  background-size: cover;
      border-top: 5px solid #F7941D;
    /* Orange top border */
    /* Orange bottom border */

}

.integrations-section .container {
  position: relative;        /* anchor point for half-section */
  height: 100%;              /* fill the section */
}

.integrations-section h2 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 2px #777;
}

.integrations-section .half-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;               /* half the height of .container */
  display: flex;
  align-items: center;
  color: rgb(255,255,255);
  text-shadow: 2px 2px 2px #777;
}

/* Medium (≥768px) & up: only 60% height */
@media (min-width: 768px) {
  .integrations-section .half-section {
    height: 60%;
  }
  
}

.integrations-section .half-section .col {
  padding: 1rem;
      min-width: 0;
}

  .responsive-text {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
  }

.welcome-section {
    height: 66vh;              /* example: 100% of viewport height */
    position: relative;        /* for absolute children */
    background-color: rgb(1, 55, 64); 
    color: white !important;
    text-shadow: 1px 1px #013740ff !important;
        border-top: 5px solid #F7941D;
    /* Orange top border */
    /* Orange bottom border */
}

/* 1) Make the row a positioning context */
#welcome .container {
  position: relative;
}

#welcome-image {
    background: url('images/iloqgreenbox.jpeg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
/* General Section Styling */
.how-it-works-section {
    background: rgb(1, 56, 64);
        /* Light gradient background */
    padding: 3rem 0;
        border-top: 5px solid #F7941D;
    /* Orange top border */
    /* Orange bottom border */
}

/* Business Process Styling */
.business-process {
    background-color: #003366;
    /* Dark Navy for business section */
    color: #FFFFFF;
    /* White text */
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.business-process h3 {
    font-size: 2rem;
    color: #F7941D;
    /* Orange heading for contrast */
    margin-bottom: 1.5rem;
}


/* Integration Options Styling */
.integration-options {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    margin-top: 4rem;
}

.integration-options h3 {
    font-size: 1.8rem;
    color: #003366;
    /* Dark Navy for contrast */
    margin-bottom: 1.5rem;
}

/* Integration Option Cards */
.option-card {
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    justify-content: space-between;
    /* Equal spacing */
    align-items: center;
    background-color: #FFFFFF;
    /* White for cards */
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    /* Consistent height */
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.option-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.option-card h4 {
    font-size: 1.5rem;
    color: #003366;
    /* Dark Navy */
    margin-bottom: 0.75rem;
}

.option-card p {
    font-size: 1.2rem;
    color: #4F4F4F;
    /* Improved contrast for readability */
    line-height: 1.5;
}

.how-it-works-section i {
    font-size: 3rem;
}

/* Step Boxes (For Businesses) */
.step {
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    justify-content: space-between;
    /* Equal spacing */
    align-items: center;
    background-color: #FFFFFF;
    /* White for step cards */
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    /* Consistent height */
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.step h4 {
    font-size: 1.5rem;
    color: #003366;
    /* Dark Navy */
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1.2rem;
    color: #4F4F4F;
    /* Dark Gray for readability */
    line-height: 1.5;
}

/* User Process Section */
.user-process {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


/* Steps Container */
.user-steps-container {
    display: flex;
    flex-direction: column;
    /* Stack steps vertically */
    justify-content: space-between;
    /* Equal spacing */
    align-items: flex-start;
    /* Align text to the left */
}

/* Scoped Step Box Styling */
.user-step {
    display: flex;
    flex-direction: row;
    /* Icon and content side-by-side */
    align-items: center;
    background-color: #F7F7F7;
    /* Light background for contrast */
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 120px;
    /* Short height for a wide layout */
    width: 100%;
    /* Full width inside container */
}

/* Scoped Step Icon */
.user-step .step-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    /* Prevent icon from resizing */
}

.user-step .step-icon i {
    font-size: 2rem;
    color: #F7941D;
}

/* Scoped Step Content */
.user-step h4 {
    font-size: 1.2rem;
    color: #003366;
    /* Dark Navy */
    margin-bottom: 0.25rem;
}

.user-step p {
    font-size: 0.9rem;
    color: #4F4F4F;
    /* Dark Gray */
    line-height: 1.4;
    padding-left: 1rem;
}

/* Video Container */
.video-container {
    width: 50%;
    /* Make it a percentage of the parent container */
    /* Still cap the width for very large screens */
    max-height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portrait-video {
    width: 100%;
    /* Full width of the container */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 1rem;
}

/* Case Study Section Styling */
.case-study-section {
    background-color: #F7F7F7;
    /* Light Gray for contrast */
    padding: 3rem 0;
    border-top: 5px solid #F7941D;
    /* Orange top border for distinction */
    /* Orange bottom border for distinction */
}

.section-title {
    font-size: 2rem;
    color: #003366;
    /* Dark Navy */
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4F4F4F;
    /* Dark Gray */
    margin-bottom: 2rem;
}

/* Case Study Metrics */
.case-metrics {
    text-align: left;
    /* Align metrics to the left */
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    color: #F7941D;
    /* Orange for emphasis */
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 1rem;
    color: #4F4F4F;
    /* Dark Gray */
}

/* Case Media */
.case-media img {
    max-width: 100%;
    /* Responsive image */
    border-radius: 1rem;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Case Details */
.case-details p {
    font-size: 1rem;
    color: #4F4F4F;
    /* Dark Gray */
    line-height: 1.5;
}

.case-details a {
    color: #FFFFFF;
    /* White text */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.case-details a:hover {
    background-color: #F7941D;
    /* Orange hover effect */
}

/* CTA Section Styling */
.cta-section {
    background-color: rgb(1, 55, 64);

    color: #FFFFFF;
    /* White text for contrast */
    padding: 3rem 2rem;
    text-align: center;
    border-top: 5px solid #F7941D;
    /* Orange top border */
    /* Orange bottom border */
}

/* Blur Overlay for Title and Subtitle */
.blur-overlay {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    /* Semi-transparent white background */
    backdrop-filter: blur(10px);
    /* Blur effect */
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Light shadow for depth */
    max-width: 800px;
    margin: 0 auto;
}


.cta-title {
    font-weight: bold;
    color: rgb(1, 56, 64);
    /* Dark Navy text color */
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgb(1, 56, 64);
    /* Gray text */
    margin-bottom: 1rem;
}

/* Contact Form Styling */
.contact-form {
    background-color: #FFFFFF;
    /* White form background */
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    color: #003366;
    /* Dark Navy text for inputs */
}

/* Form Labels */
.contact-form .form-label {
    font-size: 1rem;
    font-weight: bold;
    color: #003366;
}

/* Form Inputs */
.contact-form .form-control {
    border: 1px solid #B2BEB5;
    /* Light gray border */
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #F7941D;
    /* Orange border on focus */
    box-shadow: 0 0 5px rgba(247, 148, 29, 0.5);
    /* Subtle orange glow */
}

/* Submit Button */
.contact-form button {
    background-color: #F7941D;
    /* Orange button */
    color: #FFFFFF;
    /* White text */
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #FFA64D;
    /* Lighter orange */
    transform: scale(1.05);
    /* Slight zoom effect */
}