@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}


* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: linear-gradient(to right, #1f232e 0%, #1f232e 100%);
  color: white;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  padding-top: 100px;
}


h1,
h2,
h3 {
  color: #7dd3fc;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
}


.logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%; /
}

@media (max-width: 576px) {
  .logo {
    width: 100px;
    margin-bottom: 15px;
  }
}

.bg-animate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.3) 10%,
    transparent 70%
  );
  animation: pulse 5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/*NAVBAR */

.nav-link-animate {
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link-animate::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00a6fb;
  transition: width 0.3s ease;
}

.nav-link-animate:hover::after {
  width: 100%;
}

.nav-link-animate:hover {
  color: #00a6fb !important;
  text-shadow: 0 0 12px rgba(0, 176, 251, 0.5);
}

.nav-link-animate:active {
  color: #00a6fb !important;
  text-shadow: 0 0 12px rgba(0, 176, 251, 0.5);
}

/* HOME PAGE */

.hero-section {
  min-height: 100vh;
  background: linear-gradient(to right, #1f232e 0%, #1f232e 100%);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 1.5rem 1rem;
    text-align: center;
    flex-direction: column;
  }
}



.hero-section h1 {
  font-size: 3rem;
  line-height: 1.3;
  color: #0d4a7b;
}

.hero-section p {
  font-size: 1.2rem;
  color: #5f5f5f;
}

.hero-section .btn {
 color: #0085ff;
  background-color: #121518;
  border: 2px solid #14588e;
  border-radius: 0.7rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  transform: scale(1);
}

.hero-section .btn:hover {
 color: #fff;
  background: #14588e;
   border: 2px solid #14588e;
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 12s ease-in-out infinite;
}


.circle.blue { background-color: #00a6fb; }
.circle.dark { background-color: #206ba9; }
.circle.light { background-color: #007acc; }
.circle.gray { background-color: #cdd9e5; }

/* Circle Sizes & Positions */
.circle-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -50px;
}

.circle-3 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: 20%;
}

.circle-4 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
}

.circle-5 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
}

@media (max-width: 1200px) {
  .circle-1,
  .circle-2,
  .circle-3,
  .circle-4,
  .circle-5 {
    transform: scale(0.85);
  }
}

@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .circle-1,
  .circle-2,
  .circle-3,
  .circle-4,
  .circle-5 {
    transform: scale(0.7);
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .hero-section .btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
   .circle-1 {
    width: 140px;
    height: 140px;
    top: -40px;
    left: -40px;
  }

  .circle-2 {
    width: 90px;
    height: 90px;
    top: 25%;
    right: -30px;
  }

  .circle-3 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: 20%;
  }

  .circle-4 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 10%;
  }

  .circle-5 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 5%;
  }

 .circle-1,
  .circle-2,
  .circle-3,
  .circle-4,
  .circle-5 {
    transform: scale(0.4);   
    opacity: 0.07;          
  }

  .circle-1 { top: -40px; left: -40px; }
  .circle-2 { top: 20%; right: -30px; }
  .circle-3 { bottom: -60px; left: 15%; }
  .circle-4 { top: 55%; right: 10%; }
  .circle-5 { bottom: 15%; left: 5%; }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 1rem 1rem;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.market-section {
  min-height: 100vh;
  padding: 60px 0;
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .page-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.d_card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  color: #fff;
  background-color: #333;
  border-radius: 15px;
  height: 250px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform var(--d) var(--e);
}

@media (min-width: 600px) {
  .d_card {
    height: 300px;
  }
}

.d_card:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 110%;
  background-size: cover;
  background-position: center;
  transition: transform calc(var(--d) * 1.5) var(--e);
  z-index: 0;
}

.d_card:after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 200%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
  z-index: 1;
}

.d_card:nth-child(1):before {
  background-image: url('/images/market-img1.png');
}
.d_card:nth-child(2):before {
 background-image: url('/images/market-img2.png');
}
.d_card:nth-child(3):before {
 background-image: url('/images/market-img3.png');
}
.d_card:nth-child(4):before {
   background-image: url('/images/market-img4.png');
}

.d_card:nth-child(5):before {
 background-image: url('/images/market-img5.png');
}
.d_card:nth-child(6):before {
 background-image: url('/images/market-img6.png');
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
}

.content > * + * {
  margin-top: 0.5rem;
}

.heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.data-content {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Hover Animation */
@media (hover: hover) and (min-width: 600px) {
  .d_card:after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .content > *:not(.heading) {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity var(--d) var(--e), transform var(--d) var(--e);
  }

  .d_card:hover,
  .d_card:focus-within {
    align-items: center;
  }

  .d_card:hover:before,
  .d_card:focus-within:before {
    transform: translateY(-4%);
  }

  .d_card:hover:after,
  .d_card:focus-within:after {
    transform: translateY(-50%);
  }

  .d_card:hover .content,
  .d_card:focus-within .content {
    transform: translateY(0);
  }

  .d_card:hover .content > *:not(.heading),
  .d_card:focus-within .content > *:not(.heading) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }
}

.market-section h1 {
  color: #14588e;
   font-size: clamp(1.75rem, 4vw, 2.75rem); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.market-section h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
  width: 70%;
  height: 3px;
  background-color: #00bcd4;
  border-radius: 2px;
}


.team-member {
  padding: 20px 10px;
  margin-bottom: 30px; 
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e6f0f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem; /* space below image */
}

.team-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.name {
  font-size: 1.2rem;
  color: #14588e;
  margin-bottom: 0.4rem;
}

.role {
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 0.8rem;
  letter-spacing: 0.8px;
}

.bio {
  font-size: 0.85rem;
  color: #6c757d;
  max-width: 380px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-img {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 1.05rem;
  }

  .bio {
    font-size: 0.8rem;
  }

  .team-member {
    margin-bottom: 40px; 
  }
}


.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  cursor: grab;
  scrollbar-width: none; 
}
.scroll-container::-webkit-scrollbar {
  display: none; 
}

.feature-card {
   min-width: 280px;
  background-color: #f4f6fa; 
  color: #0f172a; 
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


.feature-slider-section h1 {
  color: #14588e;
 font-size: clamp(1.75rem, 4vw, 2.75rem); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.feature-slider-section h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
  width: 60%;
  height: 3px;
  background-color: #00bcd4;
  border-radius: 2px;
}

@media (max-width: 1200px) {
  .feature-card {
    min-width: 260px;
    padding: 1.2rem;
  }

  .feature-slider-section h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .feature-card {
    min-width: 240px;
    padding: 1rem;
  }

  .feature-slider-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-card {
    min-width: 220px;
  }

  .scroll-container {
    gap: 0.75rem;
  }

  .feature-slider-section h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .feature-card {
    min-width: 200px;
    padding: 0.9rem;
  }

  .scroll-container {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .feature-slider-section h1 {
    font-size: 1.5rem;
    text-align: center;
  }
}


/* ABOUT PAGE */
.about-us .img-about {
  position: relative;
  height: 700px;
  z-index: 0;
}

.about-us .text-about {
  margin-bottom: 10rem;
}

.about-us .img1,
.about-us .img2 {
  border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 17px 25px 56px -22px rgba(0, 0, 0, 0.38);
}

.about-us .img1 {
  position: relative;
  z-index: 1;
  height: 400px;
  width: 80%;
}

.about-us .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: 350px;
  width: 80%;
}

.about-us h1 {
  color: #14588e;
  font-size: clamp(1.75rem, 4vw, 2.75rem); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-us h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
  width: 60%;
  height: 3px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.about-us .about-heading {
  color: #14588e;
}

.text-about p {
  color: #c3c2c2;
}

/* ✅ Responsive Fix for Medium and Smaller Screens */
@media (max-width: 768px) {
  .about-us .img-about {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-us .img1,
  .about-us .img2 {
    position: relative !important;
    width: 100% !important;
    height: 300px !important;
  }

  .about-us .text-about {
    margin-bottom: 3rem;
  }
}



/* CONTACT PAGE */

.contact-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

.contact-us h1 {
  color: #14588e;
  font-size: clamp(1.75rem, 4vw, 2.75rem); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}


.contact-us h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.4rem;
  width: 60%;
  height: 3px;
  background-color: #00bcd4;
  border-radius: 2px;
}

.contact-us p {
  text-align: start;
  font-size: 1.1rem;
}

.contact-us a {
  color: #0085ff;
  font-size: 18px;
  font-weight: 400;
}

.form-control {
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: none !important;
  background: #f4f6fa;
  border: 1px solid #c3c2c2;
}

.btn {
   color: #0085ff;
  background-color: #121518;
  border: 2px solid #14588e;
  border-radius: 0.7rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn:hover {
  color: #fff;
  background: #14588e;
   border: 2px solid #14588e;
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .contact-us h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-us p {
    font-size: 1rem;
    text-align: center;
  }

  .form-control {
    font-size: 1rem;
    padding: 0.85rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .contact-section::before {
    background-color: rgba(
      0,
      0,
      0,
      0.7
    ); 
  }

  .contact-us h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .contact-us p,
  .contact-us a {
    font-size: 1rem;
    text-align: center;
  }

  .form-control {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  .contact-us .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .contact-us h1 {
    font-size: 1.7rem;
  }

  .contact-us p {
    font-size: 0.95rem;
  }

  .form-control {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.95rem;
  }
}

/* ARROW */

#backToTop {
  background-color: #14588e;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 999;
}

#backToTop:hover {
  background-color: #007acc;
  box-shadow: 0 0 10px rgba(20, 88, 142, 0.6);
}


/* FOOTER PAGE */

.footer-links li {
  margin-left: 8px;
  margin-bottom: 4px;
}

.footer-links .link {
  color: #ffffff80; 
  font-weight: 400;
  font-size: 16px;
}

.footer-links .link:hover {
  color: #14588e;
}

.contact i {
  color: #14588e !important;
}

.contact a {
  color: #ffffff80; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #14588e !important;
}

.footer-form .form {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.footer-form .form input {
  height: 45px;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #1f232e;
  color: #9b8a8d;
}
.footer-form .btn-submit {
  position: absolute;
  top: 4px;
  right: 5px;
  height: 36px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0085ff;
  background-color: #121518;
  border: 2px solid #14588e;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-form .btn-submit:hover {
  background-color: #14588e;
  color: #fff;
}

@media (max-width: 576px) {
  .footer-form .form {
    max-width: 100%;
  }

  .footer-form .form input {
    padding-right: 100px;
    font-size: 14px;
  }

  .footer-form .btn-submit {
    height: 34px;
    font-size: 13px;
    padding: 0 16px;
    top: 5px;
    right: 5px;
  }
}