:root {
  --dsp-primary: #043b5c;
  --dsp-accent: #00FFFF;
  --dsp-secondary: #33bbb0;	
  --dsp-light-gray: #F5F7FA;
  --dsp-dark-gray: #333333;
  --dsp-white: #FFFFFF;
  --dsp-black: #000000;
}

body {
  font-family: 'Arial', sans-serif;
  font-family: "Barlow", sans-serif;
  color: var(--dsp-dark-gray);
}

.container {
  max-width: 1140px;
}

/* Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px 0;
}

.header-logo {
  height: 50px;
}

.header-logo.left-logo {
  height: 65px;
}
a{color:#00BCB2;}
.header-content {
  padding-top: 70px; /* To account for fixed header */
}

/* Hero Banner */
.hero-banner {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dsp-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner div {
  width: 100%;
}

.hero-slider img {
  width: 100%;
  height: auto;
  display: block;
  outline:none !important;
  border:0 !important;
}

/* Button Styles */
.btn-invest {
  background-color: var(--dsp-accent) !important;
  color: var(--dsp-black) !important;
  font-weight: bold;
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all ease-in-out 300ms;
}

.btn-invest:hover {
  background-color: var(--dsp-accent);
  color: #000;
  opacity: .9;
}

.btn-dsp {
  background-color: var(--dsp-primary);
  color: var(--dsp-white);
  border-radius: 4px;
}

.btn-dsp:hover {
  background-color: var(--dsp-dark-gray);
  color: #fff;
}

/* Section Styles */
.section-title {
  color: var(--dsp-primary);
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
}

/* Resource Cards */
.resource-card {
  transition: all 0.3s ease;
  border: none;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0,58,93,0.1);
  border-radius: 4px;
  padding: 10px 0px;
  height: 100%;
  border-top: 4px solid #0cc0a0;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.card-title {
  font-size: 22px;
}

/* Icons */
.pdf-icon,
.video-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--dsp-primary), var(--dsp-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Video Styles */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Riskometer Section */
.riskometer-section {
  background-color: var(--dsp-light-gray);
}

.riskometer-title {
  color: var(--dsp-primary);
  font-weight: 600;
}

/* Disclaimer */
.disclaimer-band {
  background-color: var(--dsp-white);
  border-top: 1px solid #ddd;
  font-size: 0.85rem;
  color: #555;
  padding: 10px;
}

.disclaimer-band h6 {
  font-size: 16px;
  font-weight: 600;
}

.landing-disclaimer-box {
  font-size: 13px;
  line-height: 16px;
}

.landing-disclaimer-box table td {
  padding: 10px;
  vertical-align: top;
}

.landing-disclaimer-box table td.w20 {
  width: 20%;
}

.landing-disclaimer-box table td.w50 {
  width: 50%;
}

.landing-disclaimer-box table td.w60 {
  width: 60%;
}
.risk-img{max-width:100%;}
/* Backgrounds */
.bg-gray {
  background: #F2F5F7;
}

.banner-bg {
  background: url("../images/chameleon.jpg") no-repeat bottom right;
  background-size: cover;
  padding: 0 5% 0 5%;
}

/* Borders */
.border-dark {
  border-color: #343a40 !important;
}

.border-right {
  border-right: 1px solid #343a40 !important;
}

/* Slider Styles */
.slick-prev, .slick-next {
  background: #043b5c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.slick-prev:before, .slick-next:before {
  color: #fff;
  font-size: 20px;
}

.slick-dotted.slick-slider {
  margin: 0;
}

.slick-dots {
  bottom: 5px;
}

.slick-dots li button:before {
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: #FFF100;
}

/* Modal Video Styles */
.modal-video .modal-dialog {
  max-width: 800px;
  margin: 1.75rem auto;
}

.modal-video .modal-content {
  background: transparent;
  border: none;
}

.modal-video .modal-body {
  padding: 0;
  position: relative;
}

.modal-video .close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  opacity: 1;
  text-shadow: none;
  font-size: 2rem;
}

/* Media Queries */
@media screen and (max-width: 767px) {
  .header-logo {
    height: 30px;
  }
  
  .mfixed {
    width: 100%;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0px -2px 8px rgba(0,0,0,0.12);
    z-index: 999;
  }
  
  .mfixed .btn {
    width: 100%;
  }
  
  .disclaimer-band h6 {
    margin-bottom: 70px;
  }
  
  .resource-card {
    padding: 0;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .btn-dsp {
    font-size: 14px;
  }
  
  .landing-disclaimer-box table td.w20,
  .landing-disclaimer-box table td.w50,
  .landing-disclaimer-box table td.w60 {
    width: 100%;
    display: block;
  }
  
  .landing-sec-updated-2 .consider-fund-wrap .consider-fund-img {
    margin: 12px 0;
  }
  .border-right{border-right:0 !important;}
  .border-bottom{border-top:1px solid #000;}
  .risk-img{max-width:65%;}
  .landing-disclaimer-box table td{height:auto;}
  .slick-dots{text-align: right;}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .landing-disclaimer-box table td.w20,
  .landing-disclaimer-box table td.w60 {
    width: 100%;
    display: block;
  }
}