/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  background: rgb(18, 49, 93);
  background: linear-gradient(
    100deg,
    rgba(18, 49, 93, 1) 31%,
    rgba(28, 163, 236, 1) 100%
  );
  color: #e8e6e6;
  font-family: "Open Sans", sans-serif;
}

::-webkit-scrollbar {
  display: none;
}

a {
  color: #1b85dc;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a74c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: rgb(143, 207, 255);
  background: linear-gradient(
    157deg,
    rgba(143, 207, 255, 1) 20%,
    rgba(38, 70, 240, 1) 100%
  );
  box-shadow: 5px 5px 9px 0 rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #1a36a7;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: #1bb1dc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

#topbar .social-links a i {
  padding-right: 5px;
  color: #1bb1dc;
  display: inline-block;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 110px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-pages {
  height: 70px;
  padding: 15px 0;
  background-color: #a2aed2a7;
  border-radius: 20px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}
#header.header-scrolled .logo img {
  max-height: 3rem;
  max-width: 8rem;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #413e66;
  text-decoration: none;
}



#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 4rem;
  max-width: 9rem;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/intro-bg.png") center top no-repeat;
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: linear-gradient(black 70%, transparent 100%);
  opacity: 0.8;
  z-index: 0;
  background-size: cover;
  background-size: cover;
}
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#intro .intro-info h1 {
  color: #47427e;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h1 span {
  color: #58a9f4;
}
@media (max-width: 768px) {
  #intro .intro-info h1 {
    font-size: 32px; /* Smaller font for mobile */
    margin-bottom: 20px; /* Reduced margin for better spacing */
    font-weight: 700; /* Slightly lighter for readability */
  }

  #intro .intro-info h1 span {
    color: #58a9f4; /* Keep the light blue color, no change needed */
  }
}

/* Optional: Extra small screens (max-width: 480px) for very small devices */
@media (max-width: 480px) {
  #intro .intro-info h1 {
    font-size: 24px; /* Even smaller for tiny screens */
    margin-bottom: 15px; /* Minimal margin for tight spaces */
  }
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #020614;
  z-index: 9999;
  filter: drop-shadow(8px 10px 12px #000000);
  background: #ffffff;
  color: #000000;
}

#intro .intro-info .btn-get-started:hover,
#intro .intro-info .btn-services:hover {
  background: #62bfd8;
}
#intro p {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
  /* border-radius: 20px; */
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #5454b9;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #1bb1dc;
  text-decoration: none;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(92, 150, 200, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2ecf99; /* Green for WhatsApp, matching services icon */
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.whatsapp-float a:hover {
  background: #201e9c; /* Darker green on hover */
  transform: scale(1.05); /* Slight scale for interactivity */
}

.whatsapp-float a i {
  font-size: 20px;
}

/* Ensure the icon is visible and not obscured by other elements */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 10px;
  }

  .whatsapp-float a {
    padding: 8px 12px;
    font-size: 12px;
  }

  .whatsapp-float a i {
    font-size: 18px;
  }
}

.btn-download {
  background-color: #1b0b93;
  color: white;
  padding: 8px 10px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
/* Modal styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1000;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.modal p {
  margin-right: 60px;
}

.modal.show {
  display: flex; /* Show the modal and enable flexbox */
}


.modal-content {
  background: rgba(142, 188, 224, 0.9); /* Light blue from services image */
  padding: 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}

.close {
  color: #fff;
  float: right;
  font-size: 26px;
  cursor: pointer;
}

.close:hover {
  color: #ccc;
}

/* Form styling */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #0077cc;
  box-shadow: 0 0 5px rgba(0, 153, 255, 0.5);
}

.btn-submit {
  background: #5c6afb; 
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #402dd1;
  color: #fff;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #6e8cee;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #dfdfdf;
  width: 50%;
}

/* Section with background
--------------------------------*/

/* .section-bg {
  background: #f5f8fd;
} */

/* Services Section */
#services {
  padding: 60px 0 40px 0;
  /* background: rgb(233, 237, 242);
  background: linear-gradient(
    140deg,
    rgba(233, 237, 242, 1) 31%,
    rgba(128, 210, 255, 1) 100%
  ); */
}

#services .service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Larger, modern rounded corners like the image */
  margin: 0 10px 40px 10px;
  background: rgba(
    142,
    188,
    224,
    0.9
  ); /* Light blue, semi-transparent for depth */
  height: 300px; /* Consistent height for uniformity—adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Evenly distribute content */
  align-items: center; /* Center horizontally */
  text-align: center; /* Center text */
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for modernity */
  color: #fff; /* White text for contrast on blue background */
}

#services .service-card:hover {
  transform: scale(1.05); /* Subtle hover effect */
  background: rgba(100, 160, 220, 0.95); /* Slightly darker on hover */
}
.service-card .icon i {
  font-size: 24px; /* Adjust size if needed */
}

#services .icon {
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #fff; /* White background for icons */
}

#services .icon i {
  font-size: 36px;
  line-height: 60px;
  color: #0099ff; /* Default blue icon color—adjust per service if needed */
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff; /* White for contrast */
}

#services .title a {
  color: #fff;
  text-decoration: none;
}
#services .section-description {
  color: #adc9fded;
}

#services .service-card:hover .title a {
  color: #fff; /* Keep white on hover for consistency */
}

#services .description {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
  flex-grow: 1; /* Fill available space */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* Limit to 3 lines for uniformity */
  overflow: hidden;
  color: #fff; /* White for contrast */
}

/* Ensure columns stack and size correctly */
#services .col-md-6,
#services .col-lg-4 {
  display: flex;
  flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #services .service-card {
    height: 250px; /* Smaller on mobile */
    margin: 0 0 20px 0;
  }

  #services .description {
    font-size: 13px; /* Slightly smaller text on mobile */
  }
}

@media (max-width: 992px) {
  #services .service-card {
    height: 280px; /* Medium screen adjustment */
  }
}
/* Why Us Section */
#why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e6f2ff 100%);
  overflow: hidden;
}

#why-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#why-us .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#why-us .section-header::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #6a5acd;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#why-us .section-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: #4a4a6a;
  margin-bottom: 15px;
}

#why-us .section-header p {
  font-size: 18px;
  color: #6a6a8a;
  max-width: 700px;
  margin: 0 auto;
}

#why-us .why-us-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

#why-us .feature-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#why-us .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#why-us .feature-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

#why-us .feature-item .icon i {
  font-size: 32px;
}

#why-us .feature-item h4 {
  font-size: 20px;
  color: #4a4a6a;
  margin-bottom: 10px;
}

#why-us .feature-item p {
  font-size: 15px;
  color: #6a6a8a;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
  #why-us .why-us-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #why-us .section-header h3 {
    font-size: 28px;
  }

  #why-us .section-header p {
    font-size: 16px;
  }

  #why-us .why-us-features {
    grid-template-columns: 1fr;
  }
}

/* Product Section */

#Products {
  padding: 60px 0 40px 0;
}

#products .title a {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: hsl(223, 100%, 83%);
}
#products .section-description {
  color: #bee9ff;
}

#products .section-header {
  padding-top: 30px;
}

#products .product-img {
  text-align: center;
  margin-bottom: 3px;
}

#products .product-img img {
  max-width: 100%;
  height: 200px; /* Ensures all images are the same height */
  object-fit: cover; /* Keeps images visually appealing */
  border-radius: 5px; /* Adds a subtle rounded edge */
  transition: 0.3s;
  /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
}

#produtcs .product-img img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#products .box {
  background: rgb(74, 118, 150);
  font-size: 14px;
  color: #c9e4fa;
  margin: 5px 10px 40px 10px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 20px;
  height: 24rem; /* Fixed height for all boxes */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures content is spaced evenly */
  overflow: hidden; /* Trims overflowing content */
}

#products .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#products .btn-get-started {
  padding: 10px 30px;
  background: #0e43b6;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

#products .btn-get-started:hover {
  background: #1f33e4;
  color: #fff;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
  background: linear-gradient(135deg, #3672ad 0%, #5a9bd3 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#call-to-action .cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

#call-to-action .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#call-to-action .cta-text-container {
  flex: 1;
  padding-right: 40px;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

#call-to-action .cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

#call-to-action .cta-btn-container {
  display: flex;
  align-items: center;
}

#call-to-action .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: #fff;
  color: #3672ad;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#call-to-action .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}

#call-to-action .cta-btn svg {
  width: 20px;
  height: 20px;
  stroke: #3672ad;
  transition: transform 0.3s ease;
}

#call-to-action .cta-btn:hover svg {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #call-to-action .cta-content {
    flex-direction: column;
    text-align: center;
  }

  #call-to-action .cta-text-container {
    padding-right: 0;
    margin-bottom: 30px;
  }

  #call-to-action .cta-title {
    font-size: 28px;
  }
}

/* Research Studies Section Styling */
#research {
  padding: 60px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/research-bg.jpg') center center no-repeat;
  background-size: cover;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: #1bb1dc;
  bottom: 0;
  left: calc(50% - 60px);
}

.research-container {
  margin-bottom: 40px;
}

.research-item {
  margin-bottom: 30px;
}

.research-card {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.research-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1bb1dc;
  color: #fff;
  width: 80px;
  font-size: 28px;
}

.research-content {
  padding: 25px;
  flex: 1;
}

.research-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #5454b9;
}

.research-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.btn-research {
  display: inline-block;
  padding: 8px 15px;
  color: #5454b9;
  border: 1px solid #5454b9;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-research:hover {
  background: #5454b9;
  color: #fff;
}

.research-footer {
  text-align: center;
  padding: 30px;
  background: rgba(27, 177, 220, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.research-footer p {
  margin-bottom: 20px;
  color: #555;
  font-size: 16px;
}

.research-cta-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-research-cta {
  display: inline-block;
  padding: 12px 25px;
  background: #5454b9;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-research-cta:hover {
  background: #1bb1dc;
  transform: scale(1.05);
}

.btn-research-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #5454b9;
  border: 2px solid #5454b9;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-research-secondary:hover {
  background: #5454b9;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .research-card {
    flex-direction: column;
  }
  
  .research-icon {
    width: 100%;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .section-header h3 {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .research-content h4 {
    font-size: 16px;
  }
}

/* Animation for research cards */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.research-item {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.research-item:nth-child(1) { animation-delay: 0.1s; }
.research-item:nth-child(2) { animation-delay: 0.2s; }
.research-item:nth-child(3) { animation-delay: 0.3s; }
.research-item:nth-child(4) { animation-delay: 0.4s; }
.research-item:nth-child(5) { animation-delay: 0.5s; }
.research-item:nth-child(6) { animation-delay: 0.6s; }
.research-item:nth-child(7) { animation-delay: 0.7s; }
.research-item:nth-child(8) { animation-delay: 0.8s; }
.research-item:nth-child(9) { animation-delay: 0.9s; }

/* Features Section
--------------------------------*/

#features {
  padding: 80px 0;
}

#features h4 {
  font-weight: 600;
  font-size: 24px;
}

img {
  border-radius: 10%;
}
/* Frequently Asked Questions Section
--------------------------------*/

#faq {
  padding: 60px 0;
  overflow: hidden;
}

#faq .section-description {
  color: #adc9fded;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ebebeb;
}

#faq #faq-list a {
  padding: 22px 0;
  display: block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 20px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list a.collapse {
  color: #78dbf7;
}

#faq #faq-list a.collapsed {
  color: #cfdff7;
}

#faq #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background: linear-gradient(135deg, #f5f8fd 0%, #e6f2ff 100%);
  padding: 60px 0;
  color: #413e66;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: 48%;
  display: flex;
  justify-content: space-between;
}

.company-info {
  width: 45%;
}

.company-info img {
  max-height: 60px;
  margin-bottom: 15px;
}

.company-info p {
  color: #696592;
  font-size: 14px;
  margin-bottom: 15px;
}

.socialmedia-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.socialmedia-links a {
  color: #696592;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socialmedia-links a:hover {
  color: #1bb1dc;
  transform: scale(1.2);
}

.quick-links {
  width: 45%;
}

.quick-links h4 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
  color: #413e66;
}

.quick-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #1bb1dc;
}

.quick-links ul {
  list-style: none;
}

.quick-links ul li {
  margin-bottom: 10px;
}

.quick-links ul li a {
  color: #696592;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: #1bb1dc;
}

.contact-info {
  margin-top: 20px;
}

.contact-info h4 {
  color: #413e66;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #696592;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-form h4 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
  color: #413e66;
}

.contact-form p {
  color: #696592;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #dce1ec;
  border-radius: 4px;
  font-size: 14px;
  color: #413e66;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #1bb1dc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0a98c0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #696592;
}

.footer-bottom a {
  color: #1bb1dc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
    flex-direction: column;
  }

  .company-info,
  .quick-links,
  .contact-form {
    width: 100%;
    margin-bottom: 30px;
  }

  /*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

  @media (min-width: 991px) {
    #call-to-action .cta-btn-container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end;
    }
  }

  @media (max-width: 991px) {
    #topbar {
      display: block; /* Ensure visibility */
      padding: 5px 0; /* Reduce padding for mobile */
    }

    #topbar .container {
      padding: 0 10px; /* Reduce container padding for mobile */
    }

    #topbar .social-links {
      gap: 5px; /* Reduce gap between links for mobile */
    }

    #topbar .social-links a {
      font-size: 14px; /* Smaller font for mobile */
    }

    #topbar .social-links .icon-download {
      font-size: 16px; /* Smaller icon for mobile */
    }

    #topbar .social-links span.d-none.d-md-inline-block {
      display: none; /* Hide "Download Brochure" text on mobile, keep icon */
    }
  }

  #testimonials .testimonial-item p {
    width: 80%;
  }

  @media (max-width: 991px) {
    #topbar {
      display: block; /* Ensure visibility */
    }

    #header {
      height: 70px;
      padding: 15px 0;
    }

    #header .logo h1 {
      font-size: 28px;
      padding: 8px 0;
    }

    #why-us .why-us-content {
      padding-top: 30px;
    }

    #pricing {
      padding-bottom: 30px;
    }

    #pricing .card {
      margin-bottom: 50px;
    }
  }

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }

    #faq #faq-list a {
      font-size: 18px;
    }

    #faq #faq-list i {
      top: 13px;
    }
  }

  @media (max-width: 767px) {
    #intro {
      height: auto;
      padding: 80px 0 60px 0;
    }

    #intro .container {
      height: auto !important;
    }

    #intro .intro-img {
      width: 80%;
    }

    #intro .intro-info {
      text-align: center;
      padding-top: 40px;
    }

    #intro .intro-info h2 {
      font-size: 34px;
      text-align: left;
      margin-bottom: 30px;
    }

    .section-header p {
      width: 100%;
    }

    #testimonials .testimonial-item {
      text-align: center;
    }

    #testimonials .testimonial-item .testimonial-img {
      float: none;
      margin: auto;
    }

    #testimonials .testimonial-item h3,
    #testimonials .testimonial-item h4,
    #testimonials .testimonial-item p {
      margin-left: 0;
    }
  }

  @media (max-width: 574px) {
    #footer .footer-top .social-links a {
      margin-bottom: 25px;
    }
  }
}
