:root {
  --white-color:                  #ffffff;
  --primary-color:                #1046ae;
  --secondary-color:              #1046ae;
  --section-bg-color:             #f5f5f5;
  --dark-color:                   #000000;
  --p-color:                      #000000;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 60px;
  --h2-font-size:                 42px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               14px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: #e5f1ff;
    font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h3 {
  color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: inherit;
}

h4 {
  font-size: var(--h4-font-size);
  line-height: inherit;
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-hero ::selection,
.bg-warning ::selection {
  background: #f9d55c;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 3px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 3px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 3px solid var(--primary-color);
  border-left-width: 3px;
  border-right-width: 3px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}

.play-icon::before {
  position: relative;
  left: 1px;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/

.custom-btn {
  background: var(--primary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  margin-top: 10px;
}

.custom-btn:hover {
  background: var(--white-color);
  color: var(--white-color);
}

.custom-bg-primary {
  background: var(--dark-color);
}

.custom-bg-primary:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

.btn-primary{
  background-color: var(--primary-color);
}

.special {
  color: var(--primary-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  right: 0;
  left: 0;
}

body {
  padding-top: 70px; /* Adjust based on navbar height */
}

/* Existing styles */
.navbar-brand {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.text-danger {
  color: black;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover,
.projects-detail-page .navbar-nav .nav-link.active:hover {
  color: var(--secondary-color);
}

.projects-detail-page .navbar-nav .nav-link.active {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Remove Bootstrap JS-dependent styles, as react-bootstrap handles toggling */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}
/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header-icon {
  color: var(--dark-color);
}

.site-header .social-icon {
  text-align: right;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: calc(100vh - 133px);
}

.section-hero {
  background-image: url('../images/jason-goodman-MUZFKa_mttU-unsplash.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}

.section-hero::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.section-hero-text {
  position: relative;
}

.carousel {
  padding-right: 0;
  padding-left: 0;
}

.hero-carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-image-wrap::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.carousel-caption {
  z-index: 9;
  top: 32%;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 50%;
  margin-right: 12px;
  margin-left: 12px;
}

.carousel-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 50px;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 70px;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  width: 70px;
  height: 70px;
}



















/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-image-wrap {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image-info {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 40px;
}

.about-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thumb {
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 30px 20px;
  min-height: 280px;
}

.about-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-thumb {
    padding: 25px 15px;
    min-height: 250px;
  }
  
  .about-image-info {
    padding: 30px 20px;
  }
}

@media (max-width: 767.98px) {
  .about-thumb {
    padding: 20px 15px;
    min-height: 220px;
    margin-bottom: 20px;
  }
  
  .about-image-info {
    padding: 25px 15px;
  }
  
  .about-info h5 {
    font-size: 1.1rem;
  }
  
  .about-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .about-thumb {
    padding: 15px 10px;
    min-height: 200px;
  }
  
  .about-image-info {
    padding: 20px 15px;
  }
  
  .about-info h5 {
    font-size: 1rem;
    margin-bottom: 1rem !important;
  }
  
  .about-info p {
    font-size: 0.85rem;
  }
}

/* Animation container adjustments */
@media (max-width: 575.98px) {
  .about-info .mb-3 {
    margin-bottom: 1rem !important;
  }
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services {
  background: var(--section-bg-color);
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  color: var(--primary-color);
  display: block;
  text-align: left;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border: 0;
  border-left: 7px solid var(--primary-color);
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-left-color: var(--secondary-color);
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.nav-tabs .nav-link.active h3,
.nav-tabs .nav-link:focus h3, 
.nav-tabs .nav-link:hover h3 {
  color: var(--primary-color);
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.projects-thumb-large {
  min-height: 356px;
}

.projects-thumb:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.projects-thumb:hover .projects-image {
  transform: scale(1.2);
}

.projects-thumb:hover .projects-title-wrap {
  padding-bottom: 30px;
}

.projects-thumb:hover .custom-btn,
.projects-btn-wrap .custom-btn:hover {
  background: var(--primary-color);
}

.projects-title-wrap {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 25px 25px 10px 25px;
  transition: all 0.2s;
}

.projects-small-title {
  color: var(--primary-color);
  text-transform: uppercase;
}

.projects-title {
  color: var(--white-color);
}

.projects-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}

.projects-thumb-large .projects-image {
  object-fit: cover;
  height: 100%;
}

.projects-btn-wrap {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.projects-btn-wrap .custom-btn {
  font-size: 30px;
  padding: 7.5px 15px;
}








/* GlobeMap Container */
.globe-map-container {
  width: 100%;
  height: 300px; /* Default height */
  overflow: hidden; /* Prevent overflow */
}


/* Ensure canvas fits container */
.globe-map-container canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Existing styles (e.g., for navbar) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  right: 0;
  left: 0;
}

/*body {
  padding-top: 70px;
}*/













/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.custom-form .form-control {
  background: var(--primary-color);
  box-shadow: none;
  border-radius: 0;
  border: 0;
  border-bottom: 3px solid var(--section-bg-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  transition: all 0.3s;
  outline: none;
  color: white;
}

.custom-form .form-control::placeholder {
  color: white;
  opacity: 0.7;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-bottom-color: var(--white-color);
}

.custom-form button[type="submit"] {
  background: black;
  border-radius: 100px;
  border: 0;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
  padding: 12px 30px;
  width: auto;
  margin-top: 20px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  color: var(--dark-color);
}

.small-title {
  display: block;
  margin-bottom: 15px;
  font-size: var(--p-font-size);
}

.whatsapp-contact {
  margin-top: 20px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: var(--p-font-size);
}

.whatsapp-link .contact-icon {
  color: white;
  font-size: 24px;
  margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-form {
    padding: 20px;
  }

  .custom-form .form-control {
    margin-bottom: 15px;
  }

  .custom-form button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .custom-form {
    padding: 15px;
  }

  .small-title {
    font-size: var(--small-font-size);
  }

  .whatsapp-link {
    font-size: var(--small-font-size);
  }
}
















/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--primary-color);
  padding: 60px 0;
  color: var(--white-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-logo {
  color: var(--white-color);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center; /* Center the logo */
}

.footer-description {
  color: var(--white-color);
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
  text-align: center; /* Center the description */
}

.social-icon {
  display: flex;
  justify-content: center; /* Center the icons horizontally */
  gap: 15px;
  padding: 0;
  list-style: none;
  margin: 0 auto; /* Ensure the list is centered */
}

.social-icon-link {
  transition: transform 0.3s ease;
  background: var(--white-color);
  border-radius: 20px;
  display: inline-flex; /* Use inline-flex for better alignment */
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.social-icon-link:hover {
  transform: scale(1.2);
}

.footer-links ul,
.payment-icons {
  list-style: none;
  padding: 0;
  text-align: center; /* Center the links and payment icons */
}

.footer-title {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center; /* Center the title */
}

.footer-link {
  color: var(--white-color);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffffcc;
}

.payment-icons {
  display: flex;
  justify-content: center; /* Center payment icons */
  gap: 15px;
  margin-bottom: 20px;
}

.copyright-text {
  color: var(--white-color);
  font-size: var(--copyright-text-font-size, 0.85rem);
  text-align: center; /* Center the copyright text */
}

.copyright-text a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
}

.copyright-text a:hover {
  text-decoration: underline;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon li {
  list-style: none;
}

.social-icon-link {
  color: var(--dark-color);
  font-size: var(--copyright-text-font-size);
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .site-footer {
    padding: 40px 0;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
  }

  .footer-links,
  .footer-payment {
    margin-top: 30px;
  }

  .social-icon {
    gap: 10px;
    justify-content: center; /* Ensure centering on smaller screens */
  }

  .payment-icons {
    gap: 10px;
    justify-content: center; /* Ensure centering on smaller screens */
  }
}

@media (max-width: 575px) {
  .footer-logo {
    font-size: 1.3rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .social-icon {
    justify-content: center; /* Ensure centering on extra small screens */
  }

  .payment-icons {
    justify-content: center; /* Ensure centering on extra small screens */
  }
}
















/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .projects-thumb-large {
    min-height: 416px;
  }
}

@media screen and (max-width: 1280px) {
  .contact svg {
    bottom: 0;
    margin-bottom: 0;
    
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 10px;
  }

  .carousel-caption {
    width: 100%;
  }









  








  .contact-container-wrap {
    padding-bottom: 50px;
  }

  .contact-form {
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .contact-thumb {
    bottom: 0;
    margin-bottom: 0;
  }

  .site-footer {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .contact-icon {
    font-size: 24px;
  }

  .site-header p {
    font-size: 14px;
  }

  .carousel-control-next, 
  .carousel-control-prev {
    bottom: 20px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .contact-info {
    padding: 30px 25px;
  }

  .site-footer-wrap {
    flex-direction: column;
  }

  .copyright-text {
    padding-bottom: 10px;
  }
}






.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  border-radius: 15px;
  padding: 2rem;
}

.input-group-append {
  border-left: none;
}


.email-verification-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verification-card {
  border-radius: 15px;
  padding: 2rem;
}


/* User Home Page */
.user-home-page {
  min-height: 100vh;
  background-color: #F5F7FA;
}

.reviews-carousel .carousel-item {
  display: flex;
  justify-content: center;
}

.carousel-card {
  max-width: 300px;
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.carousel-card:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .reviews-carousel .carousel-item {
    display: flex;
    justify-content: space-between;
  }
  .reviews-carousel .carousel-item .carousel-card {
    flex: 0 0 30%;
    margin: 0 10px;
  }
  .reviews-carousel {
    display: flex;
    flex-wrap: nowrap;
  }
  .reviews-carousel .carousel-inner {
    display: flex;
    width: 100%;
  }
  .reviews-carousel .carousel-item {
    flex: 0 0 100%;
  }
}

.password-recovery-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recovery-card {
  border-radius: 15px;
  padding: 2rem;
}

















.payment-reviews-section {
  padding: 60px 0;
  background-color: #e5f1ff;
}

.payment-methods h2 {
  font-size: 2rem;
  line-height: 1.2;
}

/* Horizontal Scroll Containers */
.payment-scroll-container,
.review-scroll-container {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.payment-scroll-container::-webkit-scrollbar,
.review-scroll-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.carousel-container {
  position: relative;
  margin: 0 20px;
}

.payment-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.review-card {
  border: 1px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation Buttons */
.carousel-nav-btn {
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: bold;
}

.carousel-nav-btn:hover {
  background: rgba(16, 70, 174, 1) !important;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .payment-card {
    width: 280px !important;
    height: 320px !important;
    min-width: 280px !important;
  }

  .payment-methods h2 {
    font-size: 1.5rem;
  }

  .review-card {
    min-width: 320px !important;
  }

  .carousel-container {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .payment-card {
    width: 250px !important;
    height: 300px !important;
    min-width: 250px !important;
    padding: 15px;
  }

  .review-card {
    min-width: 280px !important;
    height: 180px !important;
  }

  .carousel-nav-btn {
    width: 35px !important;
    height: 35px !important;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .payment-card {
    width: 220px !important;
    height: 280px !important;
    min-width: 220px !important;
    padding: 15px;
  }

  .payment-card img {
    width: 50px !important;
    height: 50px !important;
  }

  .payment-methods h2 {
    font-size: 1.2rem;
  }

  .review-card {
    min-width: 260px !important;
    height: 160px !important;
    padding: 15px;
  }

  .review-card {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .carousel-nav-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px;
  }

  .carousel-container {
    margin: 0 5px;
  }
}

/* Touch scrolling improvements */
@media (hover: none) and (pointer: coarse) {
  .payment-scroll-container,
  .review-scroll-container {
    scroll-snap-type: x mandatory;
  }

  .payment-card,
  .review-card {
    scroll-snap-align: start;
  }
}

/* Smooth scrolling animation */
@media (prefers-reduced-motion: no-preference) {
  .payment-scroll-container,
  .review-scroll-container {
    scroll-behavior: smooth;
  }
}