/* Custom styles for each section */
* {
  transition: all 0.2s ease-in-out; /* Adjust the duration and timing function as needed */
}

html {
  scroll-behavior: smooth;
}

.btn-primary,
.btn-success {
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-success:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  background-color: rgba(8, 77, 168, 0.8); /* Slightly darker shade */
}

body {
  font-family: "Lato";
  font-size: 16px;
}
.navbar {
  padding: 1rem 0;
  background: linear-gradient(
    180deg,
    #f4f9ff 0%,
    rgba(231, 241, 255, 0.5) 100%
  );
  z-index: 9999;
}

.navbar .navbar-brand img {
    width: 100%;
    height: 100px;
}

.nav-item a {
  font-size: 16px;
}

.navbar-cta a {
  font-size: 16px;
  font-weight: 600;
  border-radius: 24px;
}

.navbar-cta a.me-2 {
  color: rgba(8, 77, 168, 1);
}

.btn-primary {
  background: rgba(8, 77, 168, 1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    180deg,
    #f4f9ff 0%,
    rgba(231, 241, 255, 0.5) 100%
  );
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 72px;
  margin-bottom: 1.5rem;
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
  transform: translateY(10px); /* Move down */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-section:hover h1 {
  opacity: 1; /* Fade in */
  transform: translateY(0); /* Move to original position */
}

.hero-section h1 span {
  display: inline-block;
}

.hero-section h1 span img {
  height: 72px;
}

.hero-section p.lead {
  font-size: 20px;
}

.hero-section .cta-action {
  padding: 30px;
}

.hero-section .cta-action a {
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: bold;
}

.hero-section .cta-action a {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-section .cta-action a:hover {
  transform: scale(1.05); /* Slightly grow on hover */
}

.hero-section .cta-action a.video-play-btn {
  color: rgba(89, 143, 47, 1);
  text-decoration: none;
}

.hero-section .d-flex > * {
  margin-right: 20px;
}

.hero-section .d-flex > *:last-child {
  margin-right: 0; /* Remove margin from the last element */
}

.hero-section .stars {
  color: #ffd700; /* Gold color for stars */
}

.hero-section .rating-count,
.hero-section .rating-text {
  margin: 0 15px; /* Ensure no extra margin from the <p> tags */
  font-size: 20px;
  color: rgba(52, 55, 64, 0.5);
}

.hero-section .stars i {
  margin-right: 2px;
}

.star-rating-text {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.hero-section p.lead span {
  display: inline-block;
}

.hero-section .btn-primary {
  margin-right: 10px;
}

.trusted-partners {
  text-align: center;
  padding: 50px 0;
}

.trusted-partners .trusted-logos {
  display: flex;
  justify-content: flex-start; /* Aligns items to the left */
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping if the container is small */
  gap: 50px; /* Adds 30px space between all elements */
}

.trusted-partners .trusted-logos p {
  font-size: 16px;
  margin: 0; /* Removes any default margin */
  text-align: left; /* Ensures the text is left-aligned */
}

.trusted-partners .trusted-logos img {
  height: auto; /* Ensures images retain their proportions */
  max-height: 50px; /* Adjust image size as needed */
}

/* Empower Your Business Section */
.empower-business {
  background-color: #0033cc;
  color: white;
  padding-top: 50px;
  /* text-align: center; */
}

.empower-business h2 {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: bold;
}

.empower-business p {
  font-size: 18px;
  line-height: 1.6;
}

.empower-video {
  /* margin: 20px auto; */
  width: 100%;
  position: relative; /* Position relative for child absolute positioning */
  overflow: hidden; /* Hide the overflow */
  height: 55vh;
}

.empower-video img {
  width: 100%;
}

.play-button {
  position: absolute; /* Position it absolutely within the container */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(
    -50%,
    -50%
  ); /* Shift back half its width and height to truly center */
  background-color: white; /* White background */
  color: blue; /* Blue icon color */
  border: none; /* Remove default button border */
  border-radius: 50%; /* Make it circular */
  width: 60px; /* Button width */
  height: 60px; /* Button height */
  display: flex; /* Center icon within button */
  align-items: center; /* Center icon vertically */
  justify-content: center; /* Center icon horizontally */
  cursor: pointer; /* Change cursor on hover */
  outline: none; /* Remove outline */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Optional: add some shadow for depth */
}

.play-button:hover {
  background-color: rgba(
    0,
    0,
    0,
    0.1
  ); /* Light grey on hover for subtle effect */
}

/* Trusted Companies Logos */
.trusted-logos img {
  max-width: 120px;
  margin: 0 10px;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background-color: #fff;
}

.about-section h2 {
  font-size: 60px;
  font-weight: 700;
}

.about-section h2 span {
  color: rgba(8, 77, 168, 1);
}

.about-section h4 {
  font-size: 24px;
  font-weight: 700;
}

.about-section p {
  font-size: 18px;
  font-weight: 400;
}

.about-section .col-md-4 {
  text-align: center;
  margin-bottom: 30px;
}

.about-section .about-col {
  background: rgba(242, 245, 246, 1);
  padding: 20px; /* Optional: Add padding for better spacing */
  border-radius: 8px; /* Optional: Add rounded corners */
  height: 100%;
}

.about-section .row {
  margin-right: -15px; /* Adjust as per Bootstrap's gutter size */
  margin-left: -15px;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 0;
}

.benefits-section .benefits {
  margin-bottom: 20px;
  
}

.benefits-section .benefits h2 {
  font-size: 60px;
  font-weight: 700;
}

.benefits-section .benefits h4 {
  font-size: 24px;
  font-weight: 700;
}

.benefits-section .benefits h4 i {
  color: rgba(89, 143, 47, 1);
}

.benefits-section .benefits p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.text-primary {
  color: rgba(8, 77, 168, 1);
}

.benefits-section h2 {
  margin-bottom: 40px;
}

.benefits-section .col-md-6 {
  margin-bottom: 30px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  text-align: center;
}

.stats-section .col-md-3 h2 {
  font-size: 60px;
  color: rgba(8, 77, 168, 1);
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-section .col-md-3 p {
  font-size: 24px;
  color: rgba(64, 64, 64, 1);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Call to Action Section */
.cta-section {
  background-image: url("../../assets/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 60px 0; /* Adjust the padding for space around the content */
  color: white;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 27, 62, 0.4); /* Overlay color */
  z-index: -1; /* Keeps the overlay behind the content */
}

.cta-section h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 30px;
  color: white;
}

.cta-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.cta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.cta-card:hover {
  transform: translateY(-5px); /* Slightly lift the card */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a shadow on hover */
}

.cta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.cta-card:hover {
  transform: translateY(-5px); /* Slightly lift the card */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a shadow on hover */
}

.cta-section .row {
  display: flex;
  justify-content: space-between;
}

.cta-card {
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease; /* For smooth hover effect */
  min-height: 150px;
  text-align: left;
  color: black;
}

.cta-card.blue-card {
  background: linear-gradient(90deg, #084da8 0%, #153a6b 100%);
  color: white;
}

.cta-card.green-card {
  background: linear-gradient(90deg, #598f2f 0%, #396c11 100%);
  color: white;
}

.cta-card h4 {
  font-size: 22px;
  font-weight: 600;
}

.cta-card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.cta-section .btn-primary,
.cta-section .btn-success {
  font-size: 16px;
  font-weight: 600;
  /* text-transform: uppercase; */
  width: 100%;
  text-align: center;
  /* padding: 10px 20px; */
  white-space: nowrap;
}

.cta-section .btn-white-primary {
  background: #fff;
  color: rgba(8, 77, 168, 1);
  border-radius: 24px;
}

.rounded-border {
  padding: 10px; /* Add padding inside the border */
  border: 2px solid #ccc; /* Add a border around the image */
  border-radius: 50%; /* Make the border rounded */
  display: inline-block; /* Ensure the image behaves like an inline element */
  transition: transform 0.3s ease; /* Add hover animation */
  color: #fff;
}

.cta-section .row {
  /* align-items: flex-start; */
}

.cta-section .col-md-5 {
  margin-bottom: 30px; /* For spacing between the cards */
}

/* Ensure the cards hover slightly for interaction */
.cta-card:hover {
  transform: translateY(-10px); /* Slight hover effect */
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: rgba(242, 245, 246, 1);
}

.faq-section.no-bg{
  padding: 60px 0;
  background: unset;
}

.faq-section h2 {
  text-align: center;
  /* margin-bottom: 15px; */
}

.faq-section h2.head {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-section ul {
  list-style: none;
  padding-left: unset;
}

.faq-section ul li {
  line-height: 2.5rem;
}

.faq-section button.accordion-button {
  font-size: 24px;
  font-weight: 700;
  color: rgba(64, 64, 64, 1);
}

.faq-section.no-bg button.accordion-button {
  color: rgba(64, 64, 64, 1);
  background: rgba(242, 245, 246, 1);

}

.faq-section div.accordion-body {
  font-size: 20px;
  font-weight: 400;
  padding-top: 5px;
}

.faq-section button.accordion-button:not(.collapsed) {
  color: rgba(8, 77, 168, 1);
  background-color: #fff;
  border: none;
  box-shadow: none;
}

.faq-section.no-bg .accordion-item:not(:has(.accordion-button.collapsed)) {
  box-shadow: 0px 0px 9px 1px rgba(176,176,176,1);
}


.faq-section.no-bg button.accordion-button:not(.collapsed):hover {
  background-color: transparent; /* Change this to the desired color if needed */
}

.faq-section.no-bg button.accordion-button.collapsed {
  color: rgba(64, 64, 64, 1);
  padding: 34px 25px;

}


/* .accordion-button:not(.collapsed) */

.accordion-item {
  border: none;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 12px;
}

.faq-section button.accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-section button.accordion-button:hover {
  background-color: rgba(231, 241, 255, 0.5); /* Change background on hover */
}

.expand-business {
  background: rgba(18, 20, 29, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 0;
  color: #fff;
  position: relative;
}

.expand-cta-section h2,
.expand-cta-section p,
.expand-cta-section .btn {
  margin-bottom: 30px;
}

.expand-business .expand-cta-section h2 {
  font-size: 60px;
  font-weight: 700;
}

.expand-business .expand-cta-section p {
  font-size: 20px;
  font-weight: 400;
}

.expand-business .expand-cta-section .btn {
  background: rgba(89, 143, 47, 1);
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 24px;
}

.expand-business .img-container {
  padding: 0;
}

.expand-business .img-container .expand-image {
  height: 100%;
  width: auto;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Footer */
.footer {
  padding: 40px;
}

.footer-logo img {
  /* margin-bottom: 50px; */
  width: 100%;
}
.footer .footer-logo ul {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style-type: none;
}

.footer .list-inline-item a {
  display: flex;
  justify-content: center; /* Horizontally center the icon */
  align-items: center; /* Vertically center the icon */
  width: 50px;
  height: 50px;
  background: rgba(89, 143, 47, 1); /* Background color */
  color: white; /* Icon color */
  border-radius: 50%; /* Make the background round */
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.footer a i {
  /* color: white; */
  font-size: 24px;
  text-decoration: none;
}

.footer .list-inline-item:not(:last-child) {
  margin-right: 1.5rem;
}

.footer .technology-desc p {
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
  margin-left: 60px;
}

.footer .footer-menus,
.footer .footer-quick-links {
  text-align: justify;
  margin-left: 60px;
}

.footer .footer-menus ul,
.footer .footer-quick-links ul {
  padding: 0;
  display: grid;
  gap: 16px;
}

.footer .footer-menus ul li,
.footer .footer-quick-links ul li {
  list-style: none;
}

.footer .footer-menus ul li a,
.footer .footer-quick-links ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.footer .footer-menus h3,
.footer .footer-quick-links h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-rights-policies {
  background: rgba(250, 250, 250, 1);
}

.footer-rights-policies .copyrights {
  display: flex;
  justify-content: space-between; /* Align <p> to the left and <ul> to the right */
  align-items: center; /* Vertically center the content */
  flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
  padding: 10px 0;
  color: rgba(146, 167, 176, 1);
  font-size: 16px;
  font-weight: 500;
}

.footer-rights-policies .copyrights p {
  margin: 0; /* Remove any default margin */
  text-align: left; /* Explicit left alignment (default in flex setup) */
}

.footer-rights-policies .copyrights ul {
  list-style: none;
  display: inline-flex;
  gap: 20px;
  margin: 0; /* Remove default margins */
  padding: 0;
}

.footer-rights-policies .copyrights ul li a {
  text-decoration: none;
  color: rgba(146, 167, 176, 1);
  font-size: 16px;
  font-weight: 500;
}

.badge.rounded-pill.text-bg-primary {
  background: rgba(8, 77, 168, 1);
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-section .contact-card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  margin-top: 50px;
}
.hero-section .contact-card .mb-10 {
  margin-bottom: 10px;
}

.contact-card h4 {
  font-size: 24px;
  font-weight: 700;
}

.contact-card p {
  font-size: 18px;
  font-weight: 400;
}

.contact-card a {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a i {
  margin-left: 8px;
}

.contact-card .rounded-icon {
  margin-bottom: 22px;
  background-color: rgba(242, 245, 246, 1); 
  border-radius: 50%; 
  width: 80px; 
  height: 80px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.contact-card .rounded-icon i {
  font-size: 32px;
}

.contact-form {
  padding: 50px;
}

.contact-form .form-header h3 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-form .form-header p {
  font-size: 20px;
  font-weight: 400;
}


.input-group-text {
  background-color: #fff;
  border-right: 0;
  padding: 20px 25px; 
}


.input-group .form-control:focus {
  box-shadow: none;
}

.input-group-text i {
  color: rgba(8, 77, 168, 1);
}

.input-group .form-control {
  font-size: 20px; 
  font-weight: 400;
  border-left: 0;
}

textarea.form-control {
  font-size: 20px; 
  font-weight: 400;
  padding: 20px 25px; 
  min-height: 350px;
}

.contact-form .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.contact-form .form-check-label {
  font-size: 20px;
  font-weight: 400;
}

.contact-form .btn-primary {
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 25px; /* Rounded button */
  background: rgba(8, 77, 168, 1);
  font-weight: 700;

}

.terms-and-services {
  padding: 60px 0;
}

.terms-and-services .terms h3 {
  font-size: 24px;
  font-weight: 700;
  color:  rgba(8, 77, 168, 1);
}

.terms-and-services .terms p,
.terms-and-services .terms ul li
{
  font-size: 20px;
  font-weight: 400;
  color: rgba(52, 55, 64, 1);
  margin-bottom: 20px;
  
}

.terms-and-services .terms ul {
  margin-bottom: 20px;
}

.terms-and-services .terms ul li {
  margin-bottom: unset;
}

.terms-and-services .terms p.bottom-border {
  border-bottom: 1px solid rgba(215, 224, 229, 1);
  color: rgba(52, 55, 64, 1);
  padding-bottom: 30px;
  margin-bottom: 30px;

}

.uniform-btn {
  width: 150px !important; /* Set a fixed width for both buttons */
  padding: 10px 20px; /* Consistent padding */
  text-align: center; /* Center-align text inside the button */
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.uniform-btn:hover {
  opacity: 0.9; /* Optional hover effect for better UX */
}

.contact-box {
  padding: 30px;
  background: #f3f8ff;
  border-radius: 30px;
}

/* Style for each icon-section */
.icon-section {
  position: relative;
  padding-left: 70px; /* Space for the icon */
  margin-bottom: 20px; /* Add space between sections */
}

/* Insert the Font Awesome icon before the content of each section */
.icon-section::before {
   /* Font Awesome location pin icon Unicode for "location pin" */
  font-family: 'Font Awesome 5 Free'; /* Make sure the correct font is used */
  font-weight: 900; /* Font Awesome solid icons */
  
  position: absolute;
  left: 0;
  transform: translateY(-50%); /* Vertically center the icon */
  color: #333; /* Icon color */
}

/* Optional: Style for address and contact content */
.icon-section h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 10px; /* Add space below h3 */
}

/* Adjust the top position based on the section */
.icon-section.address::before {
  content: '\f3c5';
  top: 15%; /* For Address section, place the icon at top 15% */
  font-size: 30px; /* Icon size */
}

.icon-section.map::before {
  top: 30%; /* For Connect with Us section, place the icon at top 30% */
  content: '\f2b9';
  font-size: 28px; /* Icon size */
}

.icon-section p {
  margin: 5px 0; /* Adds space between paragraphs */
}

.icon-section a {
  color: #007bff; /* Color for the email link */
  text-decoration: none; /* Remove underline from email */
}

.icon-section a:hover {
  text-decoration: underline; /* Add underline on hover */
}
