﻿:root {
  --bg-dark: #0B132B;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --primary-accent: #0066FF;
  --cyan-accent: #63d5ff;
  --gold-accent: #FFD166;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --gradient-primary: linear-gradient(135deg, #0066FF 0%, #63d5ff 100%);
  --gradient-gold: linear-gradient(135deg, #FFD166 0%, #FF9F1C 100%);
  --gradient-dark: linear-gradient(135deg, #0A192F 0%, #0B132B 100%);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(99, 213, 255, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: var(--cyan-accent);
  transition: all 0.3s ease;
}

a:hover {
  color: #38ef7d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top i:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(99, 213, 255, 0.5);
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(10px);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid rgba(0, 102, 255, 0.2);
  border-top-color: var(--cyan-accent);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.4s ease;
  z-index: 997;
  padding: 16px 0;
  background: rgba(11, 19, 43, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#header.header-scrolled, #header.header-inner-pages { 
  background: rgba(10, 25, 47, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(99, 213, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 52px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#header .logo img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo img {
    max-height: 44px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  position: relative;
  color: rgba(248, 250, 252, 0.85);
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  width: 80%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--cyan-accent);
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 15px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 8px;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(99, 213, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 200px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 16px;
  font-size: 14px;
  text-transform: none;
  color: var(--text-main);
  border-radius: 8px;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--cyan-accent);
  background: rgba(0, 102, 255, 0.15);
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 6px;
  font-size: 12px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 15px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
}

/* Get Started Button */
.get-started-btn {
  background: var(--gradient-primary);
  margin-left: 20px;
  color: #0B132B !important;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 10px 24px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 213, 255, 0.5);
  color: #0B132B !important;
  text-decoration: none;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 8px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 20px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
  outline: none !important;
  cursor: pointer;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 75px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 213, 255, 0.2);
  transition: ease-in-out 0.3s;
  opacity: 0;
  visibility: hidden;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--text-main);
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 4px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--cyan-accent);
  background: rgba(0, 102, 255, 0.15);
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(5px);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  margin-top: 80px;
  min-height: calc(85vh - 80px);
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
  background-color: #040d1a;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
}

.hero-slide-item.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
}

/* High Contrast Pure White Floating Hero Typography */
.hero-welcome-wrapper {
  text-align: center;
  margin: 0 auto 15px auto;
  position: relative;
  z-index: 6;
}

.hero-tw-title, .hero-welcome-h1, #hero .hero-tw-title {
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  font-size: 2.8rem !important;
  font-weight: 800 !important;
  margin-top: 6px !important;
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
  text-shadow: 0 4px 25px #000000, 0 0 12px #000000, 0 2px 6px #000000 !important;
}

.hero-tw-title .text-cyan, .hero-welcome-h1 .text-cyan {
  -webkit-text-fill-color: #63d5ff !important;
  color: #63d5ff !important;
  text-shadow: 0 0 20px rgba(99, 213, 255, 0.9), 0 4px 25px #000000, 0 0 10px #000000 !important;
}

.hero-tw-sub1, .hero-welcome-sub1 {
  -webkit-text-fill-color: #63d5ff !important;
  color: #63d5ff !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  margin-top: -2px !important;
  margin-bottom: 6px !important;
  text-shadow: 0 3px 18px #000000, 0 0 10px #000000, 0 2px 5px #000000 !important;
}

.hero-tw-sub2, .hero-welcome-sub2 {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  text-shadow: 0 3px 18px #000000, 0 0 10px #000000, 0 2px 5px #000000 !important;
}

.tw-cursor {
  display: inline-block;
  color: #63d5ff !important;
  -webkit-text-fill-color: #63d5ff !important;
  font-weight: bold;
  margin-left: 2px;
  animation: twBlink 0.7s infinite;
}

@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 991px) {
  #hero {
    min-height: 450px;
    padding: 70px 0 50px 0;
  }
  .hero-welcome-h1 {
    font-size: 1.85rem;
  }
  .hero-welcome-sub1 {
    font-size: 1.1rem;
  }
  .hero-welcome-sub2 {
    font-size: 0.92rem;
  }
}

/* Slider Controls & Dots */
.hero-slider-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(4, 13, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(99, 213, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-indicator-dot:hover {
  background: #63d5ff;
}

.hero-indicator-dot.active {
  width: 24px;
  border-radius: 12px;
  background: #63d5ff;
  box-shadow: 0 0 12px rgba(99, 213, 255, 0.8);
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(4, 13, 26, 0.45);
  border: 1px solid rgba(99, 213, 255, 0.3);
  color: #63d5ff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0.7;
}

.hero-slider-nav:hover {
  background: #63d5ff;
  color: #040d1a;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(99, 213, 255, 0.6);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none;
  }
}

#hero .container, #hero .container-fluid {
  position: relative;
  z-index: 5;
}

#hero h1 {
  margin: 15px 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero h2 {
  color: var(--cyan-accent);
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#hero .btn-get-started {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  color: #1a1200 !important;
  background: transparent linear-gradient(#ffeb00, #ffc300, #ff9300) 0 0 no-repeat padding-box !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(255, 147, 0, .35) !important;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  transform: translateY(-2px);
  background: transparent linear-gradient(#ffef4d, #ffcf33, #ffa726) 0 0 no-repeat padding-box !important;
  color: #1a1200 !important;
  box-shadow: 0 8px 26px rgba(255, 147, 0, .5) !important;
  text-decoration: none;
}

#hero .btn-get-started i {
  color: #1a1200 !important;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 40px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
 
  
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 60%;
  }
  
  
  
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}




@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# News Updates Ticker Bar
--------------------------------------------------------------*/
.newsupdates {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(99, 213, 255, 0.2);
  border-bottom: 1px solid rgba(99, 213, 255, 0.2);
  padding: 10px 15px;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.newsupdates marquee {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--cyan-accent);
}

.newsupdates .fa-bell {
  color: var(--gold-accent) !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #FFFFFF 0%, #63d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: var(--gradient-primary);
  bottom: -10px;
  left: calc(50% - 30px);
  box-shadow: 0 0 12px rgba(99, 213, 255, 0.6);
}

.section-title p {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# About & Chairmen
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about .content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about .content:hover {
  border-color: rgba(99, 213, 255, 0.3);
}

.about .content h3 {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #63d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about .content p {
  color: var(--text-muted) !important;
  line-height: 1.7;
  font-size: 15px;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about .content ul li {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-main);
}

.about .content ul i {
  font-size: 20px;
  color: var(--cyan-accent);
}

.about img {
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.about img:hover {
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(12px);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.counts .counters .col-lg-3 {
  padding: 8px;
}

.counts .counters .count-box,
.counts .counters .text-center {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.counts .counters .count-box:hover,
.counts .counters .text-center:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 213, 255, 0.4);
  box-shadow: 0 12px 32px rgba(99, 213, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.counts .counters i {
  font-size: 34px !important;
  color: var(--cyan-accent) !important;
  margin-bottom: 12px;
}

.counts .counters span {
  font-size: 44px;
  display: block;
  color: #fff;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counts .counters p {
  padding: 0;
  margin: 8px 0 0 0;
  font-size: 15px;
  color: var(--text-muted) !important;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services (Mission, Vision, Values)
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.services .icon-box:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 213, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.services .icon-box .icon {
  margin: 0 auto 20px auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(99, 213, 255, 0.3);
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 32px;
  color: var(--cyan-accent);
  transition: 0.3s;
}

.services .icon-box svg {
  display: none;
}

.services .icon-box h4 {
  font-weight: 700;
  margin: 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #fff;
}

.services .icon-box h4 a:hover {
  color: var(--cyan-accent);
}

.services .icon-box p {
  line-height: 1.6;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Faculty Team Card Enhancements */
.our-team {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.our-team:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 213, 255, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.our-team .picture {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient-primary);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
  overflow: visible !important;
  position: relative;
}

.our-team .picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.our-team:hover .picture img {
  transform: scale(1.05);
}

.our-team .team-content .name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.our-team .team-content .title {
  font-size: 14px;
  color: var(--cyan-accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.our-team .social {
  display: none !important;
}

.our-team .social li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.our-team .social li a:hover {
  background: var(--gradient-primary);
  color: #0B132B;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffee57;
}

.features .icon-box p {
  font-size: 15px;
  color: #ffffff;
  margin-left: 62px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #ffee57;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #acd7ff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #fff;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #b1a9fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: black;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #041627 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #a2e2ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #004e97;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: linear-gradient(to right, #041627, #053c6d ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #041627;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #041627;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: linear-gradient(42deg, #041627 0%, #053c6d  100%);
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: linear-gradient(180deg, #041627 0%, #053c6d  100%);
}

.pricing .featured h3 {
  color: #fff;
  background: #041627;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #041627;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: transparent;
  padding: 60px 0 40px;
}

.faq .section-title h2, .faq .section-title p {
  color: #fff;
}

.faq .faq-list {
  padding: 0 20px;
  max-width: 960px;
  margin: 0 auto;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 16px;
}

.faq .faq-list li {
  padding: 22px 28px 22px 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq .faq-list li:hover {
  border-color: rgba(99, 213, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 213, 255, 0.1);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 30px;
  color: #ffffff !important;
  outline: none;
  transition: color 0.3s ease;
}

.faq .faq-list .icon-help {
  font-size: 22px;
  position: absolute;
  left: 22px;
  top: 22px;
  color: var(--cyan-accent, #63d5ff);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 23px;
  color: var(--cyan-accent, #63d5ff);
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 12px 0 0 0;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14.5px;
  line-height: 1.65;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: rgba(255, 255, 255, 0.9) !important;
}

.faq .faq-list a.collapsed:hover {
  color: var(--cyan-accent, #63d5ff) !important;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.faq .btn-more-faq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(99, 213, 255, 0.35);
  color: #63d5ff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  margin-top: 24px;
}

.faq .btn-more-faq:hover {
  background: rgba(99, 213, 255, 0.15);
  border-color: #63d5ff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 60px 0;
}

.contact .info-boxes-row {
  margin-bottom: 24px;
}

.contact .info-boxes-row > [class*="col-"] {
  margin-bottom: 20px;
}

.contact .info-box {
  color: var(--text-main);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 0 !important;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 213, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--cyan-accent);
  border-radius: 50%;
  padding: 14px;
  border: 1px solid rgba(99, 213, 255, 0.3);
  background: rgba(0, 102, 255, 0.15);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-weight: 500;
}

.contact .email-link {
  color: var(--cyan-accent, #63d5ff) !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
}

.contact .email-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.contact .map-card-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  display: flex;
}

.contact .map-card-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0 !important;
  border-radius: 20px !important;
}

.contact .php-email-form {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  display: none !important;
}

.contact .captcha-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 6px;
}

.contact .captcha-badge {
  background: linear-gradient(135deg, rgba(99, 213, 255, 0.15), rgba(0, 102, 255, 0.2));
  border: 1px solid rgba(99, 213, 255, 0.4);
  color: #63d5ff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 6px;
  padding: 8px 22px;
  border-radius: 12px;
  user-select: none;
  text-shadow: 0 0 10px rgba(99, 213, 255, 0.4);
  display: inline-block;
}

.contact .captcha-refresh-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .captcha-refresh-btn:hover {
  background: rgba(99, 213, 255, 0.2);
  color: #63d5ff;
  transform: rotate(180deg);
}

.captcha-status {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

.captcha-status.matched {
  color: #63d5ff;
}

.contact .php-email-form input.form-control,
.contact .php-email-form textarea.form-control {
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

.contact .php-email-form input.form-control:focus,
.contact .php-email-form textarea.form-control:focus {
  border-color: var(--cyan-accent, #63d5ff) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 0 15px rgba(99, 213, 255, 0.25) !important;
  color: #ffffff !important;
}

.contact .php-email-form input.form-control::placeholder,
.contact .php-email-form textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.contact .php-email-form button[type="submit"], #sendform {
  background: transparent linear-gradient(#ffeb00, #ffc300, #ff9300) 0 0 no-repeat padding-box !important;
  color: #1a1200 !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(255, 147, 0, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.3px !important;
  width: auto !important;
  max-width: fit-content !important;
}

.contact .php-email-form button[type="submit"]:hover, #sendform:hover {
  background: transparent linear-gradient(#ffef4d, #ffcf33, #ffa726) 0 0 no-repeat padding-box !important;
  color: #1a1200 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 147, 0, 0.6) !important;
}

.contact .php-email-form button[type="submit"] i, #sendform i {
  color: #1a1200 !important;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 24px 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(99, 213, 255, 0.15);
  margin-top: 75px;
}

.breadcrumbs h2, .breadcrumbs h5 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cyan-accent);
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 30px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #041627 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


#footer {
  color: #fff;
  font-size: 14px;
  background:  linear-gradient(to right, #000428, #004e92bd), url(../img/hero-bg.jpg) center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
text-shadow: -2px 0px 2px #041627;
  font-size: 29px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing:3px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: linear-gradient(to right, #053c6d ,#041627 ); 
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #041627;
}

#footer .copyright-wrap {
  border-top: 1px solid #dee2e6;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #21252966;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}
 
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #0575e6; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to right, #041627, #053c6d ); 
}	/****** Bell Notification ******/	
.faa-ring {
    color: #ffcd37;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    4% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    6% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    12% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    12% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    20% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.faa-ring.animated,
.faa-ring.animated-hover:hover,
.faa-parent.animated-hover:hover>.faa-ring {
    -webkit-animation: ring 2s ease infinite;
    animation: ring 2s ease infinite;
    transform-origin-x: 50%;
    transform-origin-y: 0px;
    transform-origin-z: initial
}	
	
	
	/****** Bell Notification ******/