/* Custom Bootstrap Styles */

:root {
  --bs-primary: #2E75ED;
  --bs-primary-rgb: 46, 117, 237;
}
@font-face {
  font-family: 'Canva Sans';
   src: url('../fonts/CanvaSans-Bold.eot');
    src: url('../fonts/CanvaSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CanvaSans-Bold.woff2') format('woff2'),
        url('../fonts/CanvaSans-Bold.woff') format('woff'),
        url('../fonts/CanvaSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Canva Sans';
     src: url('../fonts/CanvaSans-Regular.eot');
    src: url('../fonts/CanvaSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CanvaSans-Regular.woff2') format('woff2'),
        url('../fonts/CanvaSans-Regular.woff') format('woff'),
        url('../fonts/CanvaSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Canva Sans';
  background-color: #000;
  color: #fff;
}

.app-container {
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 40px 20px;
	height: 100vh;
	display: flex;
	flex: 0 1;
	flex-wrap: wrap;
	align-items: baseline;
}

.logo-container {
  max-width: 100%;
  margin: 0 auto;
}

.logo-svg {
  width: 100%;
  height: auto;
}

.logo-icon-container {
  max-width: 100%;
  margin: 0 auto;
}
.logo-icon-container  img { max-width: 90%; }
.logo-icon {
  width: 100%;
  height: auto;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title .text-primary {
  color: #2E75ED !important;
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Platforms Section */
.platforms-section {
  background: #000;
  padding: 100px 0;
  background: url(../images/contacinerBg.png) top center no-repeat;
}

.section-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Platform Cards as Tab Buttons */
.platform-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-card {
  background: #000;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 30px;
  height: 245px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-card.active,
.platform-card:focus {
  border-color: #0A74EB !important;
  box-shadow: 0px 4px 24px rgba(10, 116, 235, 0.3);
  outline: none;
}

.platform-card.border-primary {
  /* Initial state for first card */
}

.platform-card:hover {
  transform: translateY(-5px);
  /* border-color: #0A74EB; */
}

.platform-icon {
  margin-bottom: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 21px);
  grid-template-rows: repeat(2, 21px);
  gap: 7px;
  width: fit-content;
}

.social-dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
}

.platform-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-image {
	max-width: 100%;
	max-height: 120px;
	object-fit: contain;
	filter: brightness(1000%) grayscale(100%);
}
.platform-card:hover .platform-image , .platform-card.active .platform-image {
	filter: none;
}

.platform-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: auto;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
}

/* Social Framework Section */
.social-framework-section {
  margin-top: 60px;
}

.social-framework-section h3 {
  font-size: 2.375rem;
  font-weight: 700;
}

.social-framework-section p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.btn-know-more {
  background: #0A74EB;
  border: none;
  padding: 14px 30px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background: #0860c7;
  transform: translateY(-2px);
}

/* Dream Section */
.dream-section {
  background: #000;
  padding: 150px 0;
}

.dream-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Footer */
.footer-section {
  background: #000;
  border-top: 1px solid #C0C1C3;
  padding: 50px 0 10px;
}

.footer-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-info h6 {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-info p {
  font-size: 1.125rem;
  color: #E7EAED;
}

.linkedin-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.linkedin-link:hover {
  transform: translateY(-3px);
}

.footer-divider {
  border-color: #E7EAED;
  opacity: 1;
  margin: 40px 0;
}

.banner-bg-video {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.platformVideo video { width: 100%; border-radius: 16px; }
.footer-info a { text-decoration: none; color: #fff; }

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .section-description {
    font-size: 2.5rem;
  }
  
  .dream-title {
    font-size: 5rem;
  }
  
  .footer-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
    .dream-section {
        padding: 30px 0 !important;
    }
    .footer-section {
        text-align: center;
    }
    .footer-info  {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom:15px ;
    }
    .footer-info div {
        width: 100%;
        margin-top: 15px;
        margin-left: 0px !important;
    }
    .platforms-section .footer-divider {
        margin-bottom: 20px;
    }
    .platform-tabs { margin-top: 40px !important; }
    .platformVideo { margin-bottom: 15px; } 
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-description {
    font-size: 1.5rem;
  }
  
  .social-framework-section {
    margin-top: 50px;
  }
  
  .social-framework-section h3 {
    font-size: 1.75rem;
  }
  
  .dream-title {
    font-size: 2.5rem;
  }
  
  .footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .footer-info {
    margin-bottom: 2rem;
  }

  .platform-card {
	height: 145px;
}
  .platform-image {
	max-height: 48px;
}

.platform-tabs li {
	padding: 5px !important;
	margin-top: 10px !important;
}

}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.25rem;
  }
  
  .dream-title {
    font-size: 2rem;
  }

  .social-framework-section p {
	font-size: 0.925rem;
}
}