/* General Reset and Base */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.navbar-logo {
    max-width: 140px;
    height: auto;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-signin {
    background-color: #0046ad;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.btn-request-demo {
    background-color: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
   
        
      background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 150px 20px;
   color: white;
   text-align: center;
   height: 100%;
   min-height: 600px;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: left; 
    text-transform: lowercase;
     margin-top: 200px;
    font-size: 72px; 
}

.hero-subtitle {
    font-size: 1.5rem;
      color: #62B33B;
    text-align: left; 
     font-weight: bold;
}
.hero-description {
    font-size: 1rem;
    
    text-align: left; 
   line-height: 1.6;
   width: 100%;
   max-width: 600px;
   
   color: #fff;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
    margin-top: 120px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
    margin-top: 80px;
  }

  .hero-description {
    font-size: 0.875rem;
  }
}


/* Info Section */
.info-section {
  padding: 2rem 1rem;
  background-color: #f5faff;
  display: flex;
  justify-content: center;
  
  }

.info-border {
  padding: 1px;
  border-radius: 20px;
  background-color: #ffffff; /* actual visible border */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.info-wrapper {
  background: linear-gradient(90deg, #e3f2fd, #e8f5e9);
  border-radius: 20px;
  padding: 2rem;
  max-width: 1400px;
}

.info-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  gap: 1.5rem;
}

.info-left,
.info-text {
  flex: 1;
  width: 100%;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Text Styling */
.info-text{
  color: #00333a;
  font-size: 17px;
  line-height: 1.6;
  font-family: sans-serif;
  word-wrap:break-word;
  margin-right: 25px;
}

.info-heading {
  font-size: 36px !important;
  color: #003DA5;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .info-container {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .info-wrapper {
    padding: 1.5rem 2rem; /* reduced padding */
  }

  .info-text {
    padding-left: 2rem;
    margin-bottom: 2rem; /* reduced height */
  }

  .info-heading {
    font-size: 2rem;
  }

  .info-image img {
    max-height: 500px; /* reduce image height */
  }
}

@media (max-width: 767px) {
  .info-container {
    flex-direction: column !important;
  }

  .info-text {
    padding: 0 10px !important;
    margin: 0 !important;
    max-width: 100% !important;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .info-text p {
    font-size: 16px !important;
    text-align: left !important;
    line-height: 1.6;
    white-space: normal;
  }

  .info-heading {
    font-size: 26px;
    text-align: center;
  }
}


.two-column-features {
  background: #f9f9f9;
  position: relative;
  min-height: 600px;
}

.product-center {
  pointer-events: none;
  position: absolute;
  top: 50%; /* Increased from 50% to 58% */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.feature-column.left {
  left: 20%; /* was 0% earlier */
}

.feature-column.right {
  right: 20%; /* was 0% earlier */
}
.section-description{
  font-size: 18px;
}


#features {
  background-image: url('images/business1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: 720px;
  position: relative;
  z-index: 0; /* set to 0 to allow ::before to layer above */
}

#features::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.9); /* white overlay with 80% opacity */
  z-index: 1; /* sits above background, but below content */
  pointer-events: none; /* ensures clicks pass through */
}

#features .container {
  position: relative;
  z-index: 2; /* keeps content on top of overlay */
}

.phone-image {
     background: none;   /* Ensure no background */
  display: block;
  margin: 0 auto;
  width: 350px;  /* Adjust size as needed */
  height: 300px;
 
 justify-content: center;
  align-items: center;
  display: block;
   margin-top: 520px;
}
.feature-column {
  position: absolute;
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  top: 0;
  padding: 40px 0;
}

.feature-column.left {
  left: 6%;
  margin-left: 160px;
}

.feature-column.right {
  right: 6%;
  margin-right: 150px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-box img {
  width: 40px;
  height: 40px;
}
.icon-circle {
 transition: transform 0.4s ease;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.icon-circle:hover {
  transform: translateY(-8px);
}
.feature-box:hover .icon-circle {
  transform: translateY(-8px);
}
.icon-circle {
  cursor: pointer;
}
.icon-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.feature-box h6 {
  font-size: 16px;
  color:#003DA5;
  font-weight: 700;
  margin: 0;
}

.feature-box p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  #features {
    height: auto;
    padding: 40px 0;
  }

  #features::before {
    background: rgba(255, 255, 255, 0.95); /* stronger white overlay for clarity */
  }

  .two-column-features .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .feature-column {
    position: relative;
    width: 100%;
    padding: 20px 15px;
    margin: 0;
  }

  .feature-box {
    margin-bottom: 24px;
  }

  .product-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px 0;
    max-width: 280px;
  }

  .phone-image {
    margin-top: 0;
    width: 220px;
    height: auto;
  }

  .feature-column.left,
  .feature-column.right {
    margin-left: 0;
    margin-right: 0;
  }
}


/* === Benefits Section === */
/* ============================
   BENEFITS HEADING SECTION
   ============================ */
.benefits-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px;
}

.benefits-heading h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 10px;
}

.benefits-heading p {
  font-size: 1.125rem; /* 18px */
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

/* ============================
   CENTER IMAGE SECTION
   ============================ */
.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Space between image and circles layout */
}

.center-image img {
  width: 1000px;
  
  height: auto;
}

/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (max-width: 992px) {
  .benefits-heading h1 {
    font-size: 2rem; /* 32px */
  }

  .benefits-heading p {
    font-size: 1rem; /* 16px */
  }

  .center-image img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .benefits-heading h1 {
    font-size: 1.75rem; /* 28px */
  }

  .benefits-heading p {
    font-size: 0.95rem; /* 15px */
  }

  .center-image {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .benefits-heading h1 {
    font-size: 1.5rem; /* 24px */
  }

  .benefits-heading p {
    font-size: 0.875rem; /* 14px */
  }

  .center-image img {
    width: 100%;
  }
}


/* Card container from Bootstrap structure */
#use-cases .card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    height: 100%;
}

#use-cases .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
#use-cases .card img {
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    margin-bottom: 16px;
}

/* Heading inside card */
#use-cases .card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #001a66;
    margin-bottom: 10px;
}

/* Paragraph inside card */
#use-cases .card p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin: 0 auto;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* Contact & Footer */
.contact-container, .footer-container {
    display: flex;
  
    padding: 1rem 1rem;
}

.contact-info, .request-demo, .footer-left, .footer-right {
    flex: 1;
    
}

.request-demo form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

textarea {
    min-height: 100px;
}
#contact-us {
    padding: 50px;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1500px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 550px;
}

.contact-info {
    width: 50%;
    background-color: #0033a0;
    color: white;
    padding: 10px;
    text-align: center;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 1px;
}
.contact-info .divider {
    width: 10%;
    height: 3px;
    background-color: #62B33B;
    margin: 10px auto;
}


.contact-info a {
    color: white;
    text-decoration: underline;
}
.request-demo {
    width: 50%;
    background-color: #e8f5e9;
    padding: 20px;
    text-align: center;
}
.request-demo h2 {
    font-size: 30px;
    color: #0033a0;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.input-group {
    display: flex;
    gap: 5px;
    width: 100%;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 40px;
    resize: none;
}

button {
    background-color: #0033a0;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
@media (max-width: 768px) {
  .contact-container, .footer-container {
    flex-direction: column;
    max-height: none;
    padding: 2rem 1rem;
  }

  .contact-info,
  .request-demo {
    margin-bottom: 20px;
    width: 100%; /* ✅ Make each block full-width in mobile */
    padding: 10px;
    display: block; /* Optional: adjust spacing */
  }
  .request-demo {
    margin-bottom: 0;
}

}

button:hover {
    background-color: #002080;
}

/* Footer Section */
.footer {
  background-color: #fff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  color: #003DA5;
  border-top: 1px solid #ccc;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left,
.footer-right {
  flex: 1;
  text-align: center;
}

.footer-divider {
  width: 1px;
  background-color: #003DA5;
  height: 50px;
}

.footer-brand {
  margin-left: 30px;
  margin-top: 2rem;
    color: #003DA5;
}
.brand-linkedin {
  margin-top: 4px;
  margin-left: 150px; /* Add this line to shift right */
}
.footer-company {
  font-weight: 500;
    color: #003DA5;
    }


.company-row {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-subrow {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.footer-icon {
  width: 24px;
  height: 24px;
  
  transition: opacity 0.3s ease;
}
@media (max-width: 576px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }

  .company-row,
  .company-social,
  .brand-linkedin {
    margin: 0.5rem 0;
  }

  .company-social {
    display: flex;
    margin-top: -120px;
    justify-content: center;
    gap: 12px;
  }

  .footer-brand {
    display: block;
    margin-left: 110px;
    margin-top: 2rem;
    font-weight: 500;
  }

  .brand-linkedin {
    margin-top: 0.5rem;
    margin-left: 10px;
  }

  .footer-icon {
    width: 24px;
    height: 24px;
  }
}



