/* CSS Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
}

.img-fluid{
  max-width: 100%;
  height: auto;
}

/* ___________________________________________________________ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  transition: box-shadow 0.3s;
}

.navbar-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand img { display: block; height: 38px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: #f09817;
  transition: width 0.25s;
}
.nav-links a:hover          { color: #111; }
.nav-links a:hover::after   { width: 100%; }
.nav-links a.active         { color: #111; font-weight: 500; }
.nav-links a.active::after  { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #444;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #111; }


.video-popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.video-popup-content {
  position:relative;
  width: 900px;
  max-width: 96vw;
  background-color: #fff;
  outline: 5px solid #fff;
}
.video-popup-content::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.5%;
}
.video-popup-content iframe {
    width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16 / 9;
    position: absolute;
    left: 0;
    top: 0;
}
.video-close {
    position: absolute;
    top: -25px;
    right: -24px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    background-color: #000;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 35px;
}
.video-loader {
    width:50px;
    height:50px;
    border:5px solid #566ffc;
    border-top:5px solid transparent;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
@keyframes spin{
  0%{transform:rotate(0)}
  100%{transform:rotate(360deg)}
}
.img-fluid{
    max-width: 100%;
    height: auto;
}

[data-id] {cursor: pointer;}

footer .footer-Content {
  background-image: -moz-linear-gradient(0deg, #f09817 0%, #ffd493 100%);
  background-image: -webkit-linear-gradient(0deg, #f09817 0%, #ffd493 100%);
  background-image: -ms-linear-gradient(0deg, #f09817 0%, #ffd493 100%);
  padding: 0 0 0px;
  color: #546E7A;
}

footer .footer-Content h2 {
  color: #ffffff;
  font-size: 30px;
}

.textwidget {
  line-height: 24px;
  margin-bottom: 10px;
}

.textwidget p {
  font-size: 14px;
  color: #ffffff;
}

footer .menu {
  padding-left: 0;
}

footer .menu li {
  padding-bottom: 12px;
}

footer .menu li a {
  color: #ffffff;
  font-size: 14px;
}

footer .menu li a:hover {
  color: #f1f1f1;
}

.footer-social {
  margin-top: 4px;
}

.footer-social li {
  display: inline-block;
  margin-right: 15px;
}

.footer-social li a {
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social li .facebook:hover {
  color: #3b5998;
}

.footer-social li .twitter:hover {
  color: #55acee;
}

.footer-social li .linkedin:hover {
  color: #007bb5;
}

.footer-social li .google-plus:hover {
  color: #dd4b39;
}

.copyright {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.copyright_inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.copyright p {
  margin-bottom: 0;
  color: #000;
  text-align: left !important;
}

.copyright p a {
  color: #000 !important;
}

.copyright p a:hover {
  color: #333 !important;
}

.copyright .nav-inline .nav-link {
  color: #ffffff;
  padding: 10px 0;
  margin-left: 10px;
}

.copyright .nav-inline .nav-link:hover {
  color: #3c9cfd;
}

.site-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.email {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #000;
}

.email a {
  color: #000;
}
@media (max-width: 991px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .video-popup-content {
    max-width: 85%;
}
}
