.custom-navbar-dark {
  background: rgba(15, 15, 15, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 70px;
}

.custom-navbar-dark.scrolled {
  height: 60px;
  background: rgba(10, 10, 10, 0.98) !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  text-decoration: none;
  transition: all 0.25s ease;
}

.navbar-brand:hover {
  color: #5a7dff;
}

.navbar-logo {
  height: 36px;
  width: auto;
  transition: transform 0.25s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: rotate(15deg);
}

.navbar-nav {
  gap: 1.5rem;
}

.nav-link {
  color: #b0b0b0 !important;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0 !important;
  transition: all 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #5a7dff;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f0f0f0 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown-menu {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
  padding: 0.5rem 0;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: #b0b0b0 !important;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(90, 125, 255, 0.1) !important;
  color: #f0f0f0 !important;
}

.navbar-toggler {
  border: none !important;
  padding: 0.5rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(90, 125, 255, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f0f0f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='21' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
  transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  transform: rotate(90deg);
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    margin-left: 1rem;
    border-left: 2px solid #5a7dff !important;
    box-shadow: none !important;
    animation: none;
  }
}



.navbar.scrolled {
  height: 60px;
  background: rgba(10, 10, 10, 0.98) !important;
}

:root {
  --bg-dark: #121212;
  --bg-content: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #bbbbbb;
  --accent-color: #4a6bff;
  --accent-hover: #3a5bef;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --card-hover-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.4s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


html {
  scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  margin-top: 0;
  line-height: 1.2;
}


.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}




::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}



.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #b0b0b0;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(90, 125, 255, 0.1);
  position: relative;
  overflow: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(90, 125, 255, 0.5) 50%,
    transparent 100%
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-address {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}

.footer-email {
  font-size: 1rem;
  margin: 0;
  display: inline-block;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-email:hover {
  background: rgba(90, 125, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.footer-link:hover {
  color: #5a7dff;
  background: rgba(90, 125, 255, 0.1);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-contact:hover {
  background: rgba(90, 125, 255, 0.1);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: #5a7dff;
  transition: transform 0.3s ease;
}

.footer-contact:hover svg {
  transform: rotate(15deg);
}

.footer-phone {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-phone:hover {
  color: #5a7dff;
}


.footer.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem;
  }

  .footer-content {
    gap: 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }
}


.footer-link,
.footer-phone,
.footer-email {
  position: relative;
  z-index: 1;
}

.footer-link::before,
.footer-phone::before,
.footer-email::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(90, 125, 255, 0.2);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover::before,
.footer-phone:hover::before,
.footer-email:hover::before {
  opacity: 1;
}


.footer-copyright {
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer {
  opacity: 1 !important;
  transform: none !important;
}


body{
  margin: 0px 20px;
  margin-top: 20px;
}

p{
  font-size:large;
}
a:hover{
  text-decoration: none;
}


section {
  background-color: #0d0d0d;
  color: #f1f1f1;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  line-height: 1.7;
}



h1 {
  color: #3a5bef;
  text-shadow: 1px 1px 2px rgb(248, 248, 248);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 15px;
  
}



p {
  color: #d9d9d9;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 30px auto;
  
}



.inblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}



.founder-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}



.founder-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}



.founder-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
}

.founder-title {
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 10px;
}



.social-links a {
  color: #4d88ff;
  margin: 0 8px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}


.about-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  
  
}


.about-section {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.about-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}


.about-img:hover {
  transform: scale(1.05);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  padding: 10px 20px;
  background-color: #121212;
  border-left: 4px solid #3e68ff;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .about-img-wrapper {
    margin-bottom: 30px;
  }

  .about-section p {
    padding: 10px;
  }
}

.about-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 50px;
  color: #3e68ff;
  text-shadow: 2px 2px 10px rgba(62, 104, 255, 0.3), 0 0 5px #222;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}



.about-heading::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3e68ff, #5ab0f7);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}


.vision-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #3e68ff;
  text-shadow: 1px 1px 5px rgba(62, 104, 255, 0.4);
  text-align:start;
}



.vision-img {
  
  max-width: 400px;
  border-radius: 40rem;
  transition: transform 0.3s ease;
  width: 70%;
  height:250px;
}







.mission-section h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #3e68ff;
  text-shadow: 1px 1px 10px rgba(77, 136, 255, 0.4);
}




.mission-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dddddd;
  text-align: justify;
  padding: 20px;
  background-color: #1a1a1a;
  border-left: 4px solid #3e68ff;
  border-radius: 8px;
}


.expert{
  color: #3e68ff;
  text-shadow: 1px 1px 10px rgba(77, 136, 255, 0.4);
}


.founder-card{
  border-left: 4px solid #3e68ff;
  border-radius: 8px;
  background-color: #1a1a1a;
}

