* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Add these animation keyframes at the top of your CSS */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply these animation classes */
.animate-fadeInUp {
  animation: fadeInUp 2s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 2s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 2s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 2s ease forwards;
}

.animate-slideUp {
  animation: slideUp 2s ease forwards;
}

/* Add transition for smooth hover effects */
a, button, .btn {
  transition: all 0.3s ease;
}





body {
  background-color: rgb(240, 238, 238);
  font-family: Arial, sans-serif;
}

/* navbar section */
.nav-container {
  border-radius: 8px;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #164CA4 !important;
  border-bottom: 2px solid #164CA4;
  font-weight: bold;
}

.hero-section {
  padding: 50px 0;
  background: linear-gradient(90deg, rgb(213, 213, 252), rgb(193, 250, 193));
}

.img-fluids {
  margin-left: 50px;
}

.navbar-nav {
  margin-left: 150px;
}

.product-section {
  padding: 60px 0;
}

.navbar-brand img {
  width: 70px;
  height: 70px;
}

.navbar-nav .nav-item {
  padding: 0px 8px;
}

.navbar-nav a {
  text-transform: uppercase;
  font-size: 15px;
}

.whatsapp img {
  width: 30px;
  height: 30px;
}

.whatsapp {
  padding: 8px;
  padding-top: 10px;
}

.pip {
  border: 1px solid white;
  padding-top: 10px;
  border-radius: 10px;
}

.pip img {
  width: 100%;
  height: auto;
}

.pip h6 {
  text-align: center;
  font-weight: bold;
  padding-top: 10px;
}

/* product section 2 */
.heading2 {
  font-size: 45px;
  line-height: 75px;
  font-weight: 700;
}

.p2 {
  font-size: 45px;
  line-height: 75px;
  font-weight: 700;
}

.product-section2 {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.product-section2 h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.product-section2 p {
  color: #6c757d;
  margin-bottom: 20px;
}

.product-section2 .btn {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  border-radius: 5px;
}

.product-section2 .btn:hover {
  background-color: #0069d9;
  border-color: #0069d9;
}

.product-section2 img {
  max-width: 100%;
  height: auto;
}

#table {
  background-image: url(./images/pngwing.com\ \(19\)\ 2.png);
}

#features,
.product-section2,
.overview-section {
  background-image: url(./images/pngwing.com\ \(21\)\ 1.png);
}

/* Secondary Styling */
/* list items with icons */
.container1 {
  background: #fff;
  border-radius: 40px;
  width: 90%;
  max-width: 1320px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.container1 h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

.bullet-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bullet-point img {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  margin-top: 4px;
}

.bullet-point p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.bold {
  font-weight: bold;
}

/* table */
table {
  border-collapse: collapse;
  width: 80%;
  max-width: 1320px;
  margin: 60px auto;
}

th,
td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: center;
}

th {
  background-color: #0c4da2;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f8f8f8;
}

/* Container 2 Key features etc (3 divs) */
.main-container {
  display: flex;
  max-width: 1320px;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

.left-container,
.right-container {
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  position: relative;
}

.left-container {
  flex: 1;
  min-width: 350px;
  background-color: white;
  height: 600px;
}

.right-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 350px;
}

.right-container .section {
  background-color: white;
  border-radius: 30px;
  padding: 25px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.left-container::before,
.right-container .section::before {
  content: "";
  position: absolute;
  top: 10;
  left: 0;
  height: 80%;
  width: 5px;
  background-color: #12357A;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

h3 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 600;
  padding: 10px;
}

ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0 0 0;
}

li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

/* Container 3 Key features etc (3 divs) */
.main-container3 {
  display: flex;
  max-width: 1320px;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  margin-top: 60px;
}

.left-container3,
.right-container3 {
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  position: relative;
}

.left-container3 {
  flex: 1;
  min-width: 350px;
  background-color: white;
  height: 450px;
}

.right-container3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 350px;
}

.right-container3 .section3 {
  background-color: white;
  border-radius: 30px;
  padding: 25px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.left-container3::before,
.right-container3 .section3::before {
  content: "";
  position: absolute;
  top: 10;
  left: 0;
  height: 80%;
  width: 5px;
  background-color: #12357A;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.bold3 {
  font-weight: bold;
}




/* ==================== */
/* Mobile Responsiveness */
/* ==================== */
@media (max-width: 1199.98px) {
  .navbar-nav {
      margin-left: 0;
  }

  .img-fluids {
      margin-left: 0;
  }

  .hero-section {
      text-align: center;
      padding: 30px 0;
  }

  .pip {
      margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .container1,
  .main-container,
  .main-container3,
  table {
      width: 80%;
      padding: 20px;
  }

  .left-container,
  .right-container,
  .left-container3,
  .right-container3 {
      min-width: 100%;
      height: auto;
  }

  .right-container,
  .right-container3 {
      gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
      width: 50px;
      height: 50px;
  }

  .heading2,
  .p2 {
      font-size: 32px;
      line-height: 1.3;
  }

  .product-section,
  .product-section2,
  .overview-section {
      padding: 30px 0;
  }

  table {
      font-size: 14px;
  }

  th,
  td {
      padding: 8px 10px;
  }

  h3 {
      font-size: 18px;
  }

  .footer-top3 {
      flex-direction: column;
      align-items: center;
  }

  .footer-column3 {
      text-align: center;
      margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {

  
  .navbar-nav a {
      font-size: 14px;
      padding: 5px 8px;
  }

  .container1 {
      padding: 20px 15px;
      border-radius: 20px;
  }

  .left-container::before,
  .right-container .section::before,
  .left-container3::before,
  .right-container3 .section3::before {
      height: 90%;
  }

  .heading2,
  .p2 {
      font-size: 18px;
      line-height: 1.2;
  }

  .product-section .row > div,
  .product-section2 .row > div {
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 50px;
  }

  .whatsapp {
      font-size: 14px;
      padding: 6px;
  }

  .bullet-point {
      flex-direction: column;
      align-items: flex-start;
  }

  .bullet-point img {
      margin-bottom: 8px;
  }
  .quick-links{
  /* border: 2px solid red; */
  /* width: 200px; */
  margin: 5px 30px;
}
.footer-logo{
  margin-bottom: 30px;
}
}

@media (max-width: 375px) {
  .heading2,
  .p2 {
      font-size: 24px;
  }

  .container1 h2 {
      font-size: 20px;
  }

  .bullet-point p {
      font-size: 14px;
  }

  li {
      font-size: 14px;
  }
}

/* Add these animation keyframes at the top of your CSS */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply these animation classes */
.animate-fadeInUp {
  animation: fadeInUp 2s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 2s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 2s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 2s ease forwards;
}

.animate-slideUp {
  animation: slideUp 2s ease forwards;
}

/* Add transition for smooth hover effects */
a, button, .btn {
  transition: all 0.3s ease;
}

/* Enhanced Mobile Responsiveness with Typography Scaling */
@media (max-width: 1600px) {
  .heading2, .p2 {
      font-size: 42px;
      line-height: 1.4;
  }
}

@media (max-width: 1400px) {
  .heading2, .p2 {
      font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .heading2, .p2 {
      font-size: 38px;
  }
  h3 {
      font-size: 28px;
  }
}

@media (max-width: 992px) {
  .heading2, .p2 {
      font-size: 34px;
  }
  .product-section2 h2 {
      font-size: 32px;
  }
  h3 {
      font-size: 26px;
  }
}

@media (max-width: 768px) {
  .heading2, .p2 {
      font-size: 30px;
      line-height: 1.3;
  }
  .product-section2 h2 {
      font-size: 28px;
  }
  h3 {
      font-size: 24px;
  }
  .container1 h2 {
      font-size: 22px;
  }
}

@media (max-width: 576px) {
  .heading2, .p2 {
      font-size: 2zpx;
  }
  .product-section2 h2 {
      font-size: 24px;
  }
  h3 {
      font-size: 22px;
  }
  .container1 h2 {
      font-size: 20px;
  }
}

@media (max-width: 400px) {
  .heading2, .p2 {
      font-size: 22px;
  }
  .product-section2 h2 {
      font-size: 20px;
  }
  h3 {
      font-size: 20px;
  }
}

/* Apply animations to specific elements */
.hero-section .row > div:first-child {
  animation: fadeInLeft 2s ease forwards;
}

.hero-section .row > div:last-child {
  animation: fadeInRight 2s ease forwards;
}

.product-section .row > div:first-child {
  animation: fadeInLeft 2s ease forwards 0.3s;
}

.product-section .row > div:last-child {
  animation: fadeInRight 2s ease forwards 0.3s;
}

.container1 {
  animation: fadeInUp 2s ease forwards;
}

.bullet-point {
  opacity: 0;
  animation: fadeInUp 2s ease forwards;
}

.bullet-point:nth-child(1) { animation-delay: 0.2s; }
.bullet-point:nth-child(2) { animation-delay: 0.4s; }
.bullet-point:nth-child(3) { animation-delay: 0.6s; }
.bullet-point:nth-child(4) { animation-delay: 0.8s; }
.bullet-point:nth-child(5) { animation-delay: 1.0s; }

table {
  animation: scaleIn 2s ease forwards;
}

.main-container, .main-container3 {
  animation: fadeInUp 2s ease forwards;
}

.left-container, .left-container3 {
  animation: fadeInLeft 2s ease forwards;
}

.right-container, .right-container3 {
  animation: fadeInRight 2s ease forwards;
}



/* Button animations */
.whatsapp, .btn {
  animation: scaleIn 2s ease forwards;
  transform-origin: center;
}

.whatsapp:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Navbar animation */
.navbar {
  animation: slideUp 1s ease forwards;
}

.navbar-nav .nav-item {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.4s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.5s; }
.navbar-nav .nav-item:nth-child(5) { animation-delay: 0.6s; }












.foot{
    padding-top: 90px;
    padding-bottom: 60px !important;
    
}
.footer {
    background: white;
}
.footer-row{
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 180px;
    height: 100px;
    margin: 0px 10px;
}
.footer-links{
    margin-left: 20px;

}
.footer-links a {
    color: #6c757d;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    width: auto;
}
.footer-links a:hover {
    color:#3b82f6;
}
.social-icons a {
    color: #3b82f6;
    font-size: 20px;
    margin: 0 8px;
}

.social-icons a:hover{
    color: #074fb3;
}











.fixed{
    width:50px;
    height: 50px;
    box-shadow: 0px 0px 10px gray;
    background-color: white;
    color: #074fb3;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    padding-top: 10px;
    position: fixed;
    z-index: 4;
    top:600px;
    right: 30px;
    display: none;
}