/* Reset and Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

p {
  font-size: 15px;
}

html {
  font-size: 100%;
  /* Ensures base font size is 16px */
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

body {
  font-family: sans-serif;
  /* or your preferred font */
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}

.section-gap-padding {
  padding: 50px 0;
}

/* Default navbar height */
/* mobile-menu */
/* Right-slide Mobile Menu */
/* Overlay for dim background */
a.nav-link.active {
  color: #4f82a2 !important;
}

nav .contact-us {
  margin-left: 55px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1049;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Slide-in Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #7f7f7f, #b8b8b8, #d1d1d1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  padding: 150px 30px 30px;
  transition: right 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', sans-serif;
}

.mobile-menu.active {
  right: 0;
}

/* Close button */
.mobile-menu .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Navigation items */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 25px;
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  color: #656565;
  transition: color var(--default-transition);
  display: inline-block;
  font-weight: 300;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #2d88f3;
}

/* Contact button */
.mobile-nav .btn.contact-link {
  display: inline-block;
  background-color: #2d88f3;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.mobile-nav .btn.contact-link:hover {
  background-color: #1b5fb4;
}
@keyframes flicker {
  0%   { opacity: 1; }
  4%   { opacity: 0.4; }
  8%   { opacity: 1; }
  12%  { opacity: 0.6; }
  16%  { opacity: 1; }
  20%  { opacity: 0.2; }
  25%  { opacity: 1; }
  100% { opacity: 1; }
}

.flicker-effect {
  animation: flicker 2.5s infinite;
  display: inline-block;
}




@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .custom-nav .navbar-brand img {
    position: absolute;
    top: 8px;
    left: 13px;
  }
}

/* mobile menu end */
.custom-nav {
  transition: all 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.custom-nav.shrink {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4f82a2
}

.custom-nav .navbar-brand img {
  transition: all 0.3s ease;
  height: auto;
  max-height: 80px;
  /* Shrink height */
}

.custom-nav.shrink .navbar-brand img {
  max-height: 50px;
  /* Smaller logo on scroll */
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: none;
  color: inherit;
  z-index: 1;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  /* pushes underline below nav background */
  width: 0;
  height: 2px;
  background-color: #4f82a2;
  transition: width 0.3s ease;
  z-index: -1;
  /* places it under the nav */
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

nav.custom-nav {
  background: #000 !important;
  padding: 13px 0 !important;
}

.navbar {
  background-color: #000;
}

.navbar-brand img {
  max-height: 80px;
  height: auto;
  width: auto;
}

.navbar-nav .nav-link {
  color: #fff;
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #f8f9fa;
}

.bm-menu-open {
  background: none;
  border: none;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
}

.bm-menu-icon {
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  margin-left: 8px;
}

.bm-menu-icon::before,
.bm-menu-icon::after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
}

.bm-menu-icon::before {
  top: -6px;
}

.bm-menu-icon::after {
  top: 6px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-item .nav-link {
  text-transform: uppercase;
}

.navbar-nav li.nav-item {
  padding: 20px;
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    max-height: 50px
  }

  h1.display-4 {
    font-size: 30px !important;
  }

  .section-gap-padding {
    padding: 25px 0;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

}

.contact-us .contact-btn {
  background-color: #4f82a2;
  color: #fff;
  width: 171px;
  height: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #4ccbe8;
  color: #4f82a2;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* .hero-section {
    background-image: url('images/banner.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
} */



.sba-spacer.spacer-1 {
  height: 66px;
  display: block;
  background: #fff;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* VIDEO BACKGROUND */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Optional dark overlay for better text contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}



h1.display-4 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  /* min-height: 100vh; */
  /* align-items: center; */
  /* padding: 100px 40px; */
  position: relative;
  z-index: 2;
  /* background-color: white; */
}

/* .section-bg { */
  /* flex: 1 1 50%; */
  /* background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  height: 100%;
  min-height: 400px;
  width: 48.581%;
  margin-left: 2.77%;
  position: relative;
}

.section-bg.bg-about::before,
.section-bg.bg-about::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  z-index: -1;
}

.section-bg.bg-about::before {
  right: 100%;
}

.section-bg.bg-about::after {
  left: 100%;
} */

/* .section-bg {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  width: 48.581%;
  margin-left: 2.77%;
} */

/* Video covers entire section */
/* .section-video {
  position: absolute;
  width: 100%;
  object-fit: fill;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0 auto;
  height: 100%;
} */

/* Mask overlay shows video through letter A */

/* Background images */
canvas {
  background-image: url('images/A-img.png');
}

canvas {
  background-position: bottom right;
}

canvas {
  display: block;
  width: 100%;
  /* background-position: center; */
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}


  .slideshow-canvas {

        display: block;

        width: 100%;

    }

.about-section {
  background-image: url('images/miami.jpg');
  /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.about-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Optional dark overlay for better text contrast */
}

.contact-us.hero {
  width: 240px;
}
.contact-form .heading{
  color: #4f82a2;
}

.about-us-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-us-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us-video video{
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.about-us-left {
  font-size: 200px;
  font-weight: bold;
  color: #64DBFF;
  text-align: center;
  position: relative;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  /* Ensure the image is responsive and fits within the space */
  /* max-width: 517px; */
}

.section-video {
  height: 100vh;
  width: 100%;
  object-fit: none;
}
.about-us-left img {
   width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
}
.section-bg {
  position: relative;
  display: flex;
  flex-direction: column;
}

.image-overlay {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

.section-video {
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 1;
}

section#hp-sba {
    background: #f5f5f5;
}

.about-us-right h2 {
  font-size: 36px;
  font-weight: bold;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
}

.about-us-right p strong {
  font-size: 18px;
  color: rgba(62, 62, 62, 1);
  font-weight: 600;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #4f82a2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 1199.98px) {
  .section-video {
    width: 100%;
    min-height: 100vh;
    display: block;
    z-index: 1;
    margin-top: 0!important;
    object-fit: cover;
    height: 100vh;
}
.about-us-left img {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
}
@media (max-width: 767.98px) {
  .about-us-content {
    flex-direction: column;
    text-align: center;
  }

  .about-us-left {
    font-size: 150px;
    margin-bottom: 20px;
  }

  .about-us-right {
    padding-left: 0;
    padding-top: 25px;
  }

  .custom-list {
    padding-top: 25px;
  }
}

.heading {
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
}

.investment-criteria-left h6 {
  color: rgba(62, 62, 62, 1);
  font-size: 24px;
  font-weight: 700;
}

.investment-criteria-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
}

.investment-criteria-left {
  flex: 1;
}

.investment-criteria-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.investment-criteria-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.investment-criteria-section .section-bg.bg-about::before,
.investment-criteria-section .section-bg.bg-about::after {
  background: #f6f6f6;
}

.investment-criteria-section .sba-spacer.spacer-1 {
  background: #f6f6f6;
}

/* === About Section Styling === */
.about-arch-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* Background Image with Gradient Overlay */
.about-arch-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) scaleX(-1);
  /* Center and flip */
  /* background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 67.3%), url('images/aboutbg.jpg'); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.15;
}

/* Wrapper */
.about-arch-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Block Layout */
.about-arch-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-arch-block.reverse {
  flex-direction: row-reverse;
}

/* Image Styling */
.about-arch-image {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.about-arch-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text Styling */
.about-arch-text {
  max-width: 600px;
  padding: 20px;
}

.about-arch-heading {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

.about-arch-text p strong {
  font-size: 18px;
  color: #3e3e3e;
  font-weight: 600;
}

/* Tablet and Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-arch-wrapper {
    gap: 20px;
    /* Reduced gap for better fit on tablets */
  }

  .about-arch-block {
    flex-direction: column;
    align-items: center;
    /* Center content on tablet */
  }

  .about-arch-image {
    max-width: 90%;
    /* Image adjusts for tablet screens */
    margin-bottom: 10px;
    /* Reduced margin to reduce gap */
  }

  .about-arch-heading {
    font-size: 34px;
    /* Smaller heading on tablets */
  }

  .about-arch-text {
    max-width: 90%;
    /* Adjust text block width */
    padding: 15px;
    /* Adjust padding for smaller screens */
    text-align: center;
  }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .about-arch-wrapper {
    gap: 20px;
    /* Even smaller gap for mobile */
  }

  .about-arch-image {
    max-width: 100%;
    /* Full width for mobile images */
    aspect-ratio: auto;
    /* Maintain aspect ratio on mobile */
    margin-bottom: 10px;
    /* Adjusted margin for mobile */
  }

  .about-arch-heading {
    font-size: 26px;
    /* Smaller heading for mobile */
  }

  .about-arch-text {
    max-width: 100%;
    /* Full width for text block */
    padding: 10px;
    /* Adjust padding */
  }
}

.what-we-do-section {
  background-color: #e6f7fb;
  padding: 60px 20px;
  /* background-image: url('images/dubai.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.what-we-do-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left image - Bigger */
.what-we-do-image.left {
  flex: 1.2;
  max-width: 400px;
}

/* Right image - Smaller */
.what-we-do-image.right {
  flex: 0.8;
  max-width: 220px;

}

.what-we-do-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Center text */
.what-we-do-text {
  flex: 1.8;
  max-width: 700px;
}

.what-we-do-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.what-we-do-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .what-we-do-container {
    flex-direction: column;
    text-align: center;
  }

  .what-we-do-text {
    text-align: center;
    max-width: 100%;
  }

  .what-we-do-image.left {
    max-width: 500px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .what-we-do-image.right {
      display: none;
    }
  }


  .what-we-do-text h2 {
    font-size: 28px;
  }
}

/* Purpose Section Styling */
.purpose-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.purpose-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.purpose-heading {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 30px;
}

.purpose-text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 576px) {
  .purpose-heading {
    font-size: 24px;
  }

  .purpose-text {
    font-size: 15px;
  }
}

/* Main Banner Section (investment page) */
.investment-section {
  background-image: url('images/LONDON\ VIEW\ .png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  /* Added padding for mobile */
}

/* Adjust font size of text for responsiveness */
.investment-section h1 {
  font-size: 3rem;
  /* Default large font size */
  line-height: 1.2;
}

@media (max-width: 768px) {
  .investment-section {
    height: 40vh;
    /* Smaller height for tablets */
  }

  .investment-section h1 {
    font-size: 2.5rem;
    /* Reduced font size for tablet */
  }
}

@media (max-width: 480px) {
  .investment-section {
    height: 30vh;
    /* Smaller height for mobile */
  }

  .investment-section h1 {
    font-size: 2rem;
    /* Further reduced font size for mobile */
  }
}


.real-estate-section {
  padding: 60px 20px;
  font-family: 'Bangla MN', sans-serif;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.tag-button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tag-btn {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background: white;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tag-btn:hover {
  background-color: #e6f0ff;
}

.tag-btn.active {
  background-color: #4f82a2;
  color: white;
  border-color: #4f82a2;
}

/* Tab content */
.tab-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  /* Text aligned to the left by default */
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .tab-content {
    padding: 20px;
    /* Add padding for better spacing on smaller screens */
  }

  .tab-pane.active {
    flex-direction: column;
    /* Stack content in mobile view */
    gap: 20px;
  }

  .criteria-text,
  .criteria-img {
    max-width: 100%;
  }

  .criteria-text h3 {
    font-size: 20px;
  }

  .criteria-text p {
    font-size: 14px;
  }

  .criteria-img img {
    width: 100%;
    max-width: 100%;
    /* Ensure image is responsive */
  }
}

.criteria-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background-color: #eaf7fd;
  /* Light blue background */
  padding: 30px;
}

.criteria-text {
  max-width: 500px;
}

.criteria-text h3 {
  font-size: 24px;
  font-weight: bold;
  /* Make the heading bold */
  margin-bottom: 15px;
  font-family: 'Arial, sans-serif';
  /* Apply Bangla MN font */
}

.criteria-text p {
  font-size: 16px;
  margin-bottom: 8px;
}

.criteria-text ul {
  padding-left: 20px;
  list-style: disc;
}

.criteria-img img {
  max-width: 500px;
  width: 100%;
}

/* Partner Section */
.partner-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.partner-intro {
  flex: 1 1 300px;
  background-color: #fff;
  color: #000;
  padding: 30px;
}

.partner-intro h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.partner-intro p {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 20px;
}

.partner-cards {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partner-cards {
    grid-template-columns: 1fr;
  }
}


.partner-card {
  background-color: #fff;
  color: #000;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #66d3ff;
  color: #fff;
}

.partner-card:hover p,
.partner-card:hover h4 {
  color: #fff;
}

.partner-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.partner-card i {
  font-size: 40px;
  /* Large icon */
  color: #00bfff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.partner-card:hover i {
  color: #fff;
}

/* Responsive layout for smaller screens */
@media (max-width: 900px) {
  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-intro {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .partner-cards {
    grid-template-columns: 1fr;
  }

  .partner-intro {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Criteria Section */
.criteria-section {
  padding: 2rem;
  background: #fff;
  font-family: Arial, sans-serif;
}

.criteria-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6rem;
}

@media (max-width: 1200px) {
  .criteria-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .criteria-container {
    gap: 1rem;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    min-width: 100%;
    margin-left: 0;
  }

  .info-box {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .left-column,
  .right-column {
    margin-left: 0;
  }

  .info-box {
    width: 100%;
  }
}

.left-column {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: 10rem;
}

.info-box {
  display: flex;
    align-items: center;
    background-color: #4f82a2;
    padding: 1rem;
    width: 500px;
    color: #fff;
}

.icon-container {
  background-color: #72e0ff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.icon-container i {
  color: white;
  font-size: 24px;
}

.info-text h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.info-text p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.right-column {
  flex: 1;
  min-width: 320px;
}

.right-column h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.attributes h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}

.attributes ul {
  list-style: none;
  padding-left: 0;
}

.attributes li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.attributes li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00bfff;
  position: absolute;
  left: 0;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
  .criteria-container {
    gap: 2rem;
    /* Reduce the gap between columns for smaller screens */
  }

  .left-column {
    margin-left: 0;
    gap: 1rem;
  }

  .info-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .criteria-container {
    gap: 1rem;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    min-width: 100%;
    margin-left: 0;
  }

  .info-box {
    width: 100%;
  }
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.check-icon {
  background-color: #4f82a2;
  /* Blue background */
  color: #ffffff;
  /* White check icon */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

/* First item is a label — no tick */
.custom-list li:first-child::before {
  content: "";
  background: none;
}




/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .investment-criteria-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .investment-criteria-left,
  .investment-criteria-right {
    flex: unset;
    width: 100%;
  }

  .investment-criteria-right img {
    max-width: 200px;
    margin-top: 20px;
  }
}

/* Layout for the Contact Section */
.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  justify-content: space-between;
}

.contact-left,
.contact-right {
  flex: 1 1 300px;
}

.contact-left h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #64DBFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    text-align: center;
  }

  .contact-form button {
    width: 100%;
  }
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-left-letter,
.contact-right {
  flex: 1 1 300px;
}

/* Style for the Letter C */
.letter-c-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #4f82a2;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-left-letter,
  .contact-right {
    width: 100%;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-form {
    text-align: left;
  }
}

/* Blue Background Section */
.stay-in-the-know {
  background-color: #64DBFF;
  color: white;
  padding: 40px 20px;
}

.know-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Text Section */
.know-text h2 {
  font-size: 28px;
  margin: 0;
}

/* Form Section */
.know-form form {
  display: flex;
  gap: 10px;
  /* flex-wrap: wrap; */
}

.know-form input[type="email"] {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  flex: 1 1 250px;
  min-width: 200px;
}

.know-form button {
  background-color: #ffffff;
  color: #4f82a2;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.know-form button:hover {
  background-color: #e6e6e6;
}

/* Blue Background Section */
.stay-in-the-know {
  background-color: #4f82a2;
  color: white;
  padding: 40px 20px;
}

.know-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Text Styling */
.know-text h2 {
  font-size: 28px;
  margin: 0;
}

/* Form and Input Styling */
.know-form form {
  width: 100%;
}

.input-group {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin-left: auto;
}

.input-group i {
  color: black;
  /* Icon color */
  font-size: 20px;
  margin-right: 10px;
  /* Space between icon and input */
}

.input-group input[type="email"] {
  width: 429px;
  /* Set width of the input field */
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  flex: 1;
  min-width: 0;
}

.input-group button {
  background-color: #ffffff;
  color: #007BFF;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.input-group button:hover {
  background-color: #e6e6e6;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .know-content {
    flex-direction: column;
    text-align: center;
  }

  .know-form form {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .input-group {
    width: 100%;
    max-width: none;
  }

  .input-group input,
  .input-group button {
    font-size: 16px;
  }
}

/* Footer Styling */
.footer {
  background-color: #000000;
  /* Black background */
  color: white;
  padding: 40px 0px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  display: flex;
  gap: 40px;
  flex: 1 1 60%;
}

.footer-section {
  flex: 1;
}

.telphone {
  color: #4f82a2;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.footer-section p {
  margin: 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Logo Styling */
.footer-right {
  flex: 1 1 20%;
  display: flex;
  justify-content: flex-end;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

/* Copyright Section Styling */
.footer-copyright {
  color: white;
  padding: 40px 0px 5px 0;
  text-align: center;
}

.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright .icon-link {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer-copyright .icon-link:hover {
  color: #1d72b8;
  /* Blue color for hover */
}

.footer-icon {
  margin-bottom: 15px;
}

/* Responsive Layout for Copyright Section */
@media (max-width: 700px) {
  .footer {
    padding: 20px 0 0;
    /* Add space at the top */
    text-align: center;
  }

  .footer-content {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 20px;
    /* Optional: extra space within the content */
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-copyright .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copyright p {
    text-align: center;
  }

  .footer-copyright .icon-link {
    margin-top: 10px;
  }
}