html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Lato', sans-serif; /* Changed font to Lato */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
/* Custom styles for the app download button in header */
.app-download-btn {
  background-color: #3AB4F2; /* A shade of blue */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.app-download-btn:hover {
  background-color: #2a9cdb; /* Darker shade on hover */
}
/* Dropdown specific styles */
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 0.375rem; /* rounded-md */
}
.dropdown-menu a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 0.375rem;
  margin: 0;
  text-align: left;
}
.dropdown-menu a:hover {
  background-color: #f1f1f1;
}
/* Footer social icons */
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px; /* full rounded */
  background-color: #26BBDE; /* Example blue, adjust as needed */
  color: white;
  font-size: 1.125rem; /* text-lg */
  transition: background-color 0.3s ease;
}
.social-icon:hover {
  background-color: #26BBDE; /* Darker blue on hover */
}
/* Header Logo Styling */
.header-logo {
  max-height: 85px; /* Adjust height to fit header */
  width: auto; /* Maintain aspect ratio */
}

/* Hero Banner Styles */
.hero-banner {
  /* Clean light gradient for the hero banner, no background image */
  background:linear-gradient(to right, #edf2f7, #e0f2fe);
    /* min-height: 153px; */
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #1a202c;
    padding: 0px 0rem;
}
.hero-banner .banner-content {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  align-items: center;
  gap: 2rem; /* Space between text and image */
}
@media (min-width: 768px) {
  .hero-banner .banner-content {
      flex-direction: row; /* Side-by-side on desktop */
      text-align: left;
      max-width: 1200px; /* Limit overall content width in banner */
  }
  .swiper{
    height: calc(100dvh - 80px);
  }
}
.title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #3AB9CC;
}
h2 {
  color: #3AB9CC;
}
.hero-banner .banner-image img {
  width: 300px; /* Adjusted size for the image */
  border-radius: 0.75rem; /* Updated to for consistency with content sections */
  object-fit: cover; /* Ensure image covers the area without distortion */
  border: 4px solid #3AB4F2; /* Blue border for emphasis, matching brand color */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Subtle shadow */
}

/* General Section Styling */
.content-section {
  padding: 0rem 0; /* No horizontal padding here, let the inner container handle it */
  overflow: auto;
}
.content-section .section-container {
  max-width: 1200px; /* Adjusted max-width for content to be consistent */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* Tailwind's px-4 equivalent */
  padding-right: 1rem; /* Tailwind's px-4 equivalent */
}
.content-section h3 {
  font-size: 1.8 rem; /* text-4xl */
  font-weight: 700;
  color: #1a202c; /* text-gray-900 */
}
.content-section p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #4a5568; /* text-gray-700 */
  line-height: 1.8;
  text-align: justify;
}
.content-section .inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem; /* Spacing between blocks */
}
/* Layout for image-text blocks within sections */
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%; /* Ensure content-block takes full width within inner-content */
}
@media screen and (orientation: portrait) {

  .content-section p{
    font-size: 1.1rem;
  }
  .text-column{
    width:100% !important;
    max-width: 100% !important;
    flex:0 0 100% !important;
  }
  .title{
    text-align: center !important;
  }
  .md\:col-span-3{
    width:50% !important;
  }
  .accordion-toggle strong,.accordion-content{
    font-size: 1.2rem !important;
    width:calc(100dvw - 8dvw) !important;
  }
  .accordion-toggle img{
    width: 6vw !important;
    height: 6vh !important;   
  }
  .content-section{
    min-height: auto !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 1200px) {
  .accordion-toggle strong,.accordion-content{
    font-size: 1.25rem !important;  
  }
  .content-section p{
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .content-block {
      flex-direction: row;
      text-align: left;
  }
  .content-block.reverse {
      flex-direction: row-reverse;
  }
  /* Adjusting the width for 40%/60% split */
  .content-block .image-area {
      flex: 0 0 40%; /* Image takes 40% of the available space */
      max-width: 40%;
      display: flex;
      justify-content: center; /* Center image within its flex item */
  }
  .content-block .text-area {
      flex: 0 0 60%; /* Text takes 60% of the available space */
      max-width: 60%;
      padding: 0 1.5rem;
  }
  .content-section .inner-content {
    flex-direction: row; /* Desktop: row */
    text-align: left; /* Desktop: left-align text */
    gap: 1rem; /* Larger gap for desktop */
}
  /* Adjust flex basis for text and slider on desktop */
  .content-section .text-column {
      flex: 0 0 60%;
      max-width: 60%;
  }
  .content-section .slider-column {
      flex: 0 0 40%;
      max-width: 40%;
  }
}
@media (max-width:767px) {
  .content-block img{
    max-width: 100% !important;
  }
  .hero-banner h1{
    font-size: 1.8rem;
  }
  .content-section h3{
    font-size: 1.5rem;
  }
  .content-section{
  padding:2rem 0;
  }
  .content-section .inner-content{
    gap:0px;
  }
  .w-\[30\%\]{
    width: 100% !important;
  }
  .py-12{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* Specific image styling within content blocks */
.content-block img {
  max-width: 80%; /* Ensure image fits within its 40% container */
  height: auto;
  border-radius: 0.75rem; /* */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0px auto;
}

/* Alternating section backgrounds */
.bg-white-section {
  background-color: #ffffff;
}
.bg-light-gray-section {
  background-color: #f8f8f8; /* A very light gray */
}

/* Mobile menu toggle button */
.hamburger-menu {
  display: none; /* Hidden by default on larger screens */
  @media (max-width: 767px) { /* md breakpoint for Tailwind */
      display: block;
  }
}
/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 40;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Start off-screen */
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease-in-out;
  z-index: 50;
  padding-top: 4rem;
}
.mobile-menu.open {
  right: 0; /* Slide in */
}
a.mobile-menu-item,.mobile-menu-item button {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
  font-weight: 500;
  display: block;
  text-decoration: none;
}
a.mobile-menu-item:hover {
  background-color: #f0f0f0;
}
.mobile-menu .dropdown-menu {
  position: static;
  box-shadow: none;
  border-radius: 0;
  background-color: #f9f9f9;
  padding-left: 1.5rem;
}
@media (min-width: 1280px) {
  .container {
      max-width: 100% !important;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  height: auto !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
  color: white;
  font-size: 1.4rem !important;
  font-weight: 700;
}
.accordion-toggle strong{
    cursor: pointer;
    background-color: #e0f2fe;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s;
    font-family: 'Montserrat';
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    display: flex;
    align-items: center;
    width:100%;
    margin-right:4px;
}
.accordion-toggle img{
  width: clamp(16px, 2vw, 32px);   /* min 16px, fluid scaling, max 32px */
  height: clamp(16px, 2.5vh, 32px); /* min 16px, fluid scaling, max 32px */
  transform: rotate(2deg);
  margin-right: -100%;
  object-fit: contain;
  cursor: pointer;
}
.accordion-toggle::after{
  margin-left: auto;
}
.accordion-toggle::after {
  content: '';
  float: right;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.accordion-toggle.active::after {
  content: '';
}
.accordion-content {
  transition: all 0.4s ease-in-out;
  background-color: white;
  margin-top: 0.25rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.accordion-content.hidden {
  display: none;
}
.faq-section-bg {
  background: linear-gradient(to right, #edf2f7, #e0f2fe);
}
nav a{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700 !important;
}
nav a:hover, nav button:hover{
  color:#EC7032 !important
}
nav a:hover span, nav button:hover span{
  background-color:#EC7032 !important
}
.navactive{
  color:#EC7032 !important
}
nav button{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700 !important;
}

.swiper-button-prev ,.swiper-button-next{
  left: 10px;
}
.testimonial-slider .swiper-button-prev, .testimonial-slider .swiper-button-next {
  display: none;
}
.swiper-button-prev, .swiper-button-next {
  color: #fff !important;
  background: #3AB9CC;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}
/* .swiper-button-prev,
.swiper-button-next {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.swiper:focus-within .swiper-button-prev,
.swiper:focus-within .swiper-button-next,
.swiper.active-nav .swiper-button-prev,
.swiper.active-nav .swiper-button-next,
.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
  opacity: 1;
  pointer-events: auto;
} */
.swiper-button-prev,
.swiper-button-next {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Mobile: hide when .hide-nav is applied */
@media (max-width: 767px) {
  .swiper.hide-nav .swiper-button-prev,
  .swiper.hide-nav .swiper-button-next {
    opacity: 0;
    pointer-events: none;
  }
  
  .title{
    text-align: center !important;
  }
  .scroll-container #page1{
    /* background-color: #F1F4F9 !important;
    background:url(../img/moobiledisorganizedinvestment.jpg) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important; */
  }
  .scroll-container #page2 p {
    margin-top:10px;
    font-size: 2.1vh !important;
    width:100%
  }
  .scroll-container #page2 .swiper-slide, .scroll-container #page2 .swiper-slide img
  {
    max-width:100% !important
  }
}
@media screen and (min-width:767px) and (max-width:1199px) {
  .scroll-container #page1{
    /* background-color: #F1F4F9 !important;
    background:url(../img/ipaddisorganizedinvestment.jpg) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important; */
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  nav a,nav .dropdown button{
    font-size:.8rem;
    text-align: center;
    margin: 0px 0px 0px 25px;
}
.accordion-toggle img{
  height: 3vh !important;
  width: 4vw !important;
}
}
@media screen and (min-width:1024px) {
  nav a,nav .dropdown button{
    font-size:.9rem;
    text-align: center;
    margin: 0px 0px 0px 50px;
}
.height-80{
  height:calc(100vh - 80px)
}
}
@media screen and (max-width:1199px) and (min-width:768px) {
  .scroll-container #page1{
  
  }
  .logo-container{
    margin-right:20px;
  }
  .container{
    max-width: 100% !important;
  }
}
@media screen and (min-width:1200px) {
  .scroll-container #page1{
    /* background-size:cover !important;
    background:url(../img/disorganizedinvestment.jpg); */
  }
  nav a,nav .dropdown button{
    font-size: .9rem;
    text-align: center;
    margin: 0px 0px 0px 27px;
    font-weight: 900 !important;
}
nav .dropdown-menu a{
  text-align: left !important;
        width: 100%;
        margin: 0px 0px 0px 0px;
}
}

@media (max-width: 767px) {
  .dropdown-menu {
    width: 100% !important;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0px !important;
    min-width: 100%;
  }
  .mobile-menu-item button{
    display: flex;
  }
  
  .dropdown-menu a {
    padding: 1rem 1.5rem;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .dropdown-toggle {
    width: 100%;
    font-size: 18px;
    padding: 14px;
  }
}
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
  text-align: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  left: 0px;
}
.swiper-slide img{
  object-fit:contain
}
.accordion-toggle{
  display: flex;
  align-items: center;
  position:relative;
  justify-content: center;
}
.accordion-toggle, .accordion-content{
  /* Full width minus padding for alignment */
}
header{
  position: fixed;
  top: 0;
  width: 100%;
  /* height: 91px; */
  z-index: 100;
}
#homePage header{
position:relative !important;
}
@media screen and (orientation:landscape){
 
}
@media screen and (max-width:767px) {
  .accordion-content,.accordion-toggle strong{
    width:88dvw !important;
  }
  .header-logo{
    max-height: 60px !important;
  }
}