.navbar-brand img{
    
    height: 80px !important;
}

.nav-link{
    color: var(--secondary-color) !important;
}

.submenu .nav-item .nav-link{
    color: var(--white-color) !important;
}

/* our Features section */

.dark-section {
  position: relative;
  background-color: #00223e; /* deep dark base */
  overflow: hidden;
  z-index: 1;
}
.dark-section::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 600px;
  left: 50%;
  bottom: -250px;
  transform: translateX(-50%);

  background: radial-gradient(
    ellipse at center,
    rgba(56, 80, 255, 0.45) 0%,
    rgba(56, 80, 255, 0.25) 30%,
    rgba(56, 80, 255, 0.10) 50%,
    rgba(56, 80, 255, 0.0) 70%
  );

  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-home::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
	opacity: .5;
    z-index: 1;
}

.hero-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Secondary Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


/* services section */
.speaker-view-more {
  position: absolute; /* adjust if needed */
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.view-more-link {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;

  transition: 
    color 0.3s ease,
    text-shadow 0.3s ease,
    transform 0.3s ease;
}


.speaker-social-btn img {
  width: 48px;              /* adjust if needed */
  height: auto;
  display: block;

  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}
@keyframes spin-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.speaker-social-btn:hover img {
  animation: spin-clockwise 1.2s linear infinite;
}

.services-view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all-services-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.view-all-services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 124, 255, 0.35);
}



/* footer  */

.footer-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-content .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(79, 124, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-content i {
  color: #4f7cff;
  font-size: 18px;
}

.footer-contact-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
  color: var(--white-color);
}

.footer-contact-btn {
  padding: 12px 22px;
  border-radius: 30px;
  background: #4f7cff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-contact-btn:hover {
  background: #365ef0;
  transform: translateY(-2px);
}


.footer-rotating-service {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-top: 25px;
}

.footer-rotating-service .label {
  opacity: 0.99;
  color: var(--secondary-color);
}

.footer-rotating-service a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-rotating-service a:hover {
  color: #4f7cff; /* adjust to brand color */
}

/* scscrolling-content */

.scrolling-content a{
  color: var(--white-color);
}

/* video modal */

.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9999;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.video-modal video {
    width: 100%;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 40px;
    color: white;
    cursor: pointer;
}


/* responsive */

@media (max-width: 768px) {
  h1{
    font-size: 45px !important;
  }

  h2{
    font-size: 30px !important;
  }

  .post-item-content h2 a{
    font-size: 25px !important;
  }
}

@media (max-width: 426px) {
  h1{
    font-size: 28px !important;
  }

  h2{
    font-size: 25px !important;
  }

  .post-item-content h2 a{
    font-size: 20px !important;
  }

  .footer-contact-cta{
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 376px) {
  .navbar-brand img {
    height: 65px !important;
}
  h1{
    font-size: 25px !important;
  }

  h2{
    font-size: 20px !important;
  }

  .post-item-content h2 a,
  h2 button{
    font-size: 18px !important;
  }

  .footer-contact-cta,
  .footer-contact-content{
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .navbar-brand img {
    height: 60px !important;
}
  h1{
    font-size: 22px !important;
  }

  p{
    font-size: 14px !important;
  }

  h2{
    font-size: 18px !important;
  }

  .post-item-content h2 a,
  h2 button{
    font-size: 16px !important;
  }
}