/*--------------------------------------------------------------

# MODERN DESIGN SYSTEM - 2024/2025

--------------------------------------------------------------*/

/* CSS Custom Properties (Variables) for consistency */
:root {
  /* Modern Color Palette - Medical/Educational Theme */
  /* --primary-color: #422774; */
  --primary-color: #2f73c6;
  --primary-dark: #2e1a52;
  --primary-light: #5d3a96;
  --secondary-color: #6a4c93;
  --accent-color: #ff6b6b;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  /* Neutral Colors */
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;

  /* Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #422774 0%, #6a4c93 100%);
  --gradient-secondary: linear-gradient(135deg, #5d3a96 0%, #8b6db8 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-medical: linear-gradient(135deg, #422774 0%, #6a4c93 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(66, 39, 116, 0.9) 0%, rgba(106, 76, 147, 0.9) 100%);

  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes (Fluid Typography) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  --text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --text-2xl: clamp(1.3rem, 1.2rem + 0.6vw, 1.6rem);
  --text-3xl: clamp(1.6rem, 1.45rem + 0.9vw, 1.9rem);
  --text-4xl: clamp(1.9rem, 1.7rem + 1.2vw, 2.5rem);
  --text-5xl: clamp(2.5rem, 2.2rem + 1.8vw, 3rem);

  /* Shadows (Modern, soft) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Modern Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: BebasNeue-Bold;
  src: url(../../fonts/BebasNeue-Bold.otf);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  font-size: var(--text-base);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--gray-700);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Modern Button Styles */
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--gradient-medical);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Modern Card Styles */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}



/*--------------------------------------------------------------

# Preloader - Modern Style

--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 4px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--secondary-color);
  border-radius: 50%;
  animation: animate-preloader 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: var(--shadow-lg);
}



@-webkit-keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



@keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Back to top button - Modern Style

--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc, #00bfa6);
  color: #fff;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,102,204,0.3);
  cursor: pointer;
}

.back-to-top.active {
  display: block;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,102,204,0.4);
}

.back-to-top:hover i {
  color: #fff;
}



/*--------------------------------------------------------------

# Disable aos animation delay on mobile devices

--------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  [data-aos-delay] {

    transition-delay: 0 !important;

  }

}



/*--------------------------------------------------------------

# Top Bar - Modern Style

--------------------------------------------------------------*/

#topbar {
  background: var(--gradient-medical);
  height: 48px;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}



#topbar.topbar-scrolled {

  top: -40px;

}



#topbar .contact-info a {

  line-height: 1;

  color: #fff;

  transition: 0.3s;

}



#topbar .contact-info a:hover {

  text-decoration: underline;

}



#topbar .contact-info i {

  padding-right: 4px;

  margin-left: 15px;

}



#topbar .contact-info i:first-child {

  margin-left: 0;

}



#topbar .social-links a {

  color: rgba(255, 255, 255, 0.6);

  padding-left: 15px;

  display: inline-block;

  line-height: 1px;

  transition: 0.3s;

}



#topbar .social-links a:hover {

  color: #fff;

}



/*--------------------------------------------------------------

# Header - Modern Style with Glassmorphism

--------------------------------------------------------------*/

#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
    padding: var(--spacing-lg) 0 0 0;
    top: 48px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.social-links a.btn {
    background: var(--gradient-medical);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    margin-left: var(--spacing-sm);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

.social-links a.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}



#header.header-scrolled {

  top: 0;

  /*padding: 15px;*/

}



#header .logo {

  font-size: 32px;

  margin: 0;

  padding: 0;

  line-height: 1;

  font-weight: 600;

  letter-spacing: 0.8px;

  font-family: "Open Sans", sans-serif;

}



#header .logo a {

  color: #222222;

}



#header .logo a span {

  color: #422774;

}

.search{position:relative;}

.search .btn{position:absolute;right:0;top:0;background:transparent;border:0;}

/*#header .logo img {

  max-height: 40px;

}*/



@media (max-width: 992px) {

  #header {

    padding: 15px;

    top: 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;

}



.nav-menu > ul > li {

  position: relative;

  white-space: nowrap;

  padding: 0 12px 0 12px;

}



.nav-menu a {
  display: block;
  position: relative;
  color: var(--white);
  transition: all var(--transition-base);
  font-size: var(--text-base);
  line-height: 48px;
  padding: 0 var(--spacing-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-success);
  visibility: hidden;
  width: 0;
  transition: all var(--transition-base);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 191, 166, 0.4);
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(0, 191, 166, 0.5);
}



.nav-menu .drop-down ul {

  display: block;

  position: absolute;

  left: 0;

  top: calc(100% + 30px);

  z-index: 99;

  opacity: 0;

  visibility: hidden;

  padding: 0;

  background: #fff;

  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

  transition: 0.3s;

}



.nav-menu .drop-down:hover > ul {

  opacity: 1;

  top: 100%;

  visibility: visible;

}



.nav-menu .drop-down li {

  min-width: 180px;

  position: relative;

}



.nav-menu .drop-down ul a {

  padding: 0 20px;

  font-size: 14px;

  font-weight: 500;

  text-transform: none;

  color: #062b5b;

}



.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {

  color: #422774;

}



.nav-menu .drop-down > a:after {

  content: "\ea99";

  font-family: IcoFont;

  padding-left: 5px;

}



.nav-menu .drop-down .drop-down ul {

  top: 0;

  left: calc(100% - 30px);

}



.nav-menu .drop-down .drop-down:hover > ul {

  opacity: 1;

  top: 0;

  left: 100%;

}



.nav-menu .drop-down .drop-down > a {

  padding-right: 35px;

}



.nav-menu .drop-down .drop-down > a:after {

  content: "\eaa0";

  font-family: IcoFont;

  position: absolute;

  right: 15px;

}



@media (max-width: 1366px) {

  .nav-menu .drop-down .drop-down ul {

    left: -90%;

  }

  .nav-menu .drop-down .drop-down:hover > ul {

    left: -100%;

  }

  .nav-menu .drop-down .drop-down > a:after {

    content: "\ea9d";

  }

}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
  letter-spacing: 3px;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box 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: #422774;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #422774;
}

.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: #422774;
  color: #fff;
}



/* Mobile Navigation */

.mobile-nav-toggle {

  position: fixed;

  right: 15px;

  top: 15px;

  z-index: 9998;

  border: 0;

  background: none;

  font-size: 24px;

  transition: all 0.4s;

  outline: none !important;

  line-height: 1;

  cursor: pointer;

  text-align: right;

}



.mobile-nav-toggle i {

  color: #222222;

}



.mobile-nav {

  position: fixed;

  top: 55px;

  right: 15px;

  bottom: 15px;

  left: 15px;

  z-index: 9999;

  overflow-y: auto;

  background: #fff;

  transition: ease-in-out 0.2s;

  opacity: 0;

  visibility: hidden;

  border-radius: 10px;

  padding: 10px 0;

}



.mobile-nav * {

  margin: 0;

  padding: 0;

  list-style: none;

}



.mobile-nav a {

  display: block;

  position: relative;

  color: #222222;

  padding: 10px 20px;

  font-weight: 500;

  outline: none;

}



.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {

  color: #422774;

  text-decoration: none;

}



.mobile-nav .drop-down > a:after {

  content: "\ea99";

  font-family: IcoFont;

  padding-left: 10px;

  position: absolute;

  right: 15px;

}



.mobile-nav .active.drop-down > a:after {

  content: "\eaa1";

}



.mobile-nav .drop-down > a {

  padding-right: 35px;

}



.mobile-nav .drop-down ul {

  display: none;

  overflow: hidden;

}



.mobile-nav .drop-down li {

  padding-left: 20px;

}



.mobile-nav-overly {

  width: 100%;

  height: 100%;

  z-index: 9997;

  top: 0;

  left: 0;

  position: fixed;

  background: rgba(9, 9, 9, 0.6);

  overflow: hidden;

  display: none;

  transition: ease-in-out 0.2s;

}



.mobile-nav-active {

  overflow: hidden;

}



.mobile-nav-active .mobile-nav {

  opacity: 1;

  visibility: visible;

}



.mobile-nav-active .mobile-nav-toggle i {

  color: #fff;

}



/*--------------------------------------------------------------

# Hero Section - Modern with Parallax Effect

--------------------------------------------------------------*/

.hero {
  width: 100%;
  min-height: 100vh;
  background-size: cover !important;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Modern Overlay with Gradient */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}



.home_banner1{background: url("../img/homeslider/slide1.jpg") top left}
.home_banner2{background: url("../img/homeslider/slide2.jpg") top left}
.home_banner3{background: url("../img/homeslider/slide3.jpg") top left}



.about_banner

{

  background: url("../img/about_us.jpg");

}

.course_banner

{

   background: url("../img/courses.jpg");

}



.download_banner

{

  background: url("../img/downloads.jpg");

}



.blog_banner

{

  background: url("../img/blog.jpg");

}



.careers_banner

{

  background: url("../img/careers.jpg");

}



.contact_banner

{

  background: url("../img/contact.jpg");

}



.admissions_banner

{

  background: url("../img/admissions.jpg");

}



/*

#hero:before {

  content: "";

  background: rgba(255, 255, 255, 0);

  position: absolute;

  bottom: 0;

  top: 0;

  left: 0;

  right: 0;

}

*/

#hero .container {
  position: relative;
  padding-top: var(--spacing-3xl);
  z-index: 3;
  text-align: center;
}



@media (max-width: 992px) {

  #hero .container {

    padding-top: 58px;

  }

}



#hero h1 {
    margin: 0 0 var(--spacing-lg) 0;
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.03em;
}

#hero h1 span {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2 {
    color: var(--white);
    margin: 0 0 var(--spacing-2xl) 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 0.02em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



#hero .btn-get-started {

  font-family: "Open Sans", sans-serif;

  text-transform: uppercase;

  font-weight: 500;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 10px 28px;

  border-radius: 4px;

  transition: 0.5s;

  color: #fff;

  background: #422774;

}



#hero .btn-get-started:hover {

  background: #247cf0;

}



#hero .btn-watch-video {

  font-size: 16px;

  display: inline-block;

  padding: 10px 25px 8px 40px;

  transition: 0.5s;

  margin-left: 25px;

  color: #222222;

  position: relative;

  font-weight: 600;

}



#hero .btn-watch-video i {

  color: #422774;

  font-size: 32px;

  position: absolute;

  left: 0;

  top: 7px;

  transition: 0.3s;

}



#hero .btn-watch-video:hover {

  color: #422774;

}



#hero .btn-watch-video:hover i {

  color: #422774;

}







@media (max-width: 768px) {

  #hero {

    height: 100vh;

  }

  #hero h1 {

    font-size: 60px;

    line-height: 52px;

  }

  #hero h2 {

    font-size: 30px;

  }

  #hero .btn-get-started, #hero .btn-watch-video {

    font-size: 13px;

  }

}



@media (max-height: 500px) {

  #hero {

    height: 120vh;

  }

}



/*--------------------------------------------------------------

# Sections General

--------------------------------------------------------------*/

section {

  padding: 60px 0;

  overflow: hidden;

}

.section-ceo{

background:#f9f2f2;

}



.section-bg {

  background-color: #f6f9fe;

}



.section-title {

  text-align: center;

  padding-bottom: 30px;

}



.section-title h2 {

  font-size: 13px;

  letter-spacing: 1px;

  font-weight: 700;

  padding: 8px 20px;

  margin: 0;

  background: #e7f1fd;

  color: #422774;

  display: inline-block;

  text-transform: uppercase;

  border-radius: 50px;

}



.section-title h3 {

  margin: 15px 0 0 0;

  font-size: 34px;

  color:#422774;



}





.section-title h3 span {

  color: #422774;

}



.section-title p {

  margin: 15px auto 0 auto;

  font-weight: 600;

}



@media (min-width: 1024px) {

  .section-title p {

    width: 50%;

  }

}



/*--------------------------------------------------------------

# Breadcrumbs

--------------------------------------------------------------*/

.breadcrumbs {

  padding: 20px 0;

  background-color: #f1f6fe;

  min-height: 40px;

  margin-top: 134px;

}



@media (max-width: 992px) {

  .breadcrumbs {

    margin-top: 58px;

  }

}



.breadcrumbs h2 {

  font-size: 24px;

  font-weight: 300;

  margin: 0;

}



@media (max-width: 992px) {

  .breadcrumbs h2 {

    margin: 0 0 10px 0;

  }

}



.breadcrumbs ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  padding: 0;

  margin: 0;

  font-size: 14px;

}



.breadcrumbs ol li + li {

  padding-left: 10px;

}



.breadcrumbs ol li + li::before {

  display: inline-block;

  padding-right: 10px;

  color: #6c757d;

  content: "/";

}



@media (max-width: 768px) {

  .breadcrumbs .d-flex {

    display: block !important;

  }

  .breadcrumbs ol {

    display: block;

  }

  .breadcrumbs ol li {

    display: inline-block;

  }

}





/*--------------------------------------------------------------

# Portfolio

--------------------------------------------------------------*/

.portfolio #portfolio-flters {

  padding: 0;

  margin: 0 auto 15px 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 8px 15px;

  font-size: 16px;

  font-weight: 600;

  line-height: 1;

  text-transform: uppercase;

  color: #444444;

  margin-bottom: 5px;

  transition: all 0.3s ease-in-out;

}



.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {

  color: #106eea;

}



.portfolio #portfolio-flters li:last-child {

  margin-right: 0;

}



.portfolio .portfolio-item {

  margin-bottom: 30px;

}



.portfolio .portfolio-item .portfolio-info {

  opacity: 0;

  position: absolute;

  left: 30px;

  right: 30px;

  bottom: 0;

  z-index: 3;

  transition: all ease-in-out 0.3s;

  background: rgba(255, 255, 255, 0.9);

  padding: 15px;

}



.portfolio .portfolio-item .portfolio-info h4 {

  font-size: 18px;

  color: #fff;

  font-weight: 600;

  color: #222222;

}



.portfolio .portfolio-item .portfolio-info p {

  color: #555555;

  font-size: 14px;

  margin-bottom: 0;

}



.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {

  position: absolute;

  right: 40px;

  font-size: 24px;

  top: calc(50% - 18px);

  color: #3c3c3c;

}



.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {

  color: #106eea;

}



.portfolio .portfolio-item .portfolio-info .details-link {

  right: 10px;

}



.portfolio .portfolio-item .portfolio-links {

  opacity: 0;

  left: 0;

  right: 0;

  text-align: center;

  z-index: 3;

  position: absolute;

  transition: all ease-in-out 0.3s;

}



.portfolio .portfolio-item .portfolio-links a {

  color: #fff;

  margin: 0 2px;

  font-size: 28px;

  display: inline-block;

  transition: 0.3s;

}



.portfolio .portfolio-item .portfolio-links a:hover {

  color: #6ba7f5;

}



.portfolio .portfolio-item:hover .portfolio-info {

  opacity: 1;

  bottom: 20px;

}



/*--------------------------------------------------------------

# Portfolio Details

--------------------------------------------------------------*/

.portfolio-details {

  padding-top: 40px;

}



.portfolio-details .portfolio-details-slider img {

  width: 100%;

}



.portfolio-details .portfolio-details-slider .swiper-pagination {

  margin-top: 20px;

  position: relative;

}



.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background-color: #fff;

  opacity: 1;

  border: 1px solid #106eea;

}



.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {

  background-color: #106eea;

}



.portfolio-details .portfolio-info {

  padding: 30px;

  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);

}



.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: 30px;

}



.portfolio-details .portfolio-description h2 {

  font-size: 26px;

  font-weight: 700;

  margin-bottom: 20px;

}



.portfolio-details .portfolio-description p {

  padding: 0;

}





/*--------------------------------------------------------------

# Featured Services - Modern Cards

--------------------------------------------------------------*/

#featured-services {
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

.featured-services .icon-box {
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  border-radius: var(--radius-2xl);
  z-index: 1;
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-medical);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: -1;
  border-radius: var(--radius-2xl);
}

.featured-services .icon-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.featured-services .icon-box:hover::before {
  opacity: 1;
}

.featured-services .icon-box img{width:60px;}

/*.featured-services .icon-box::before {

  content: '';

  position: absolute;

  background: #cbe0fb;

  right: 0;

  left: 0;

  bottom: 0;

  top: 100%;

  transition: all 0.3s;

  z-index: -1;

}*/



.featured-services .icon-box:hover::before {

  background: #422774;

  top: 0;

  border-radius: 0px;

}



.featured-services .icon {

  margin-bottom: 15px;

}



.featured-services .icon i {

  font-size: 48px;

  line-height: 1;

  color: #422774;

  transition: all 0.3s ease-in-out;

}



.featured-services .title {

  font-weight: 700;

  margin-bottom: 15px;

  font-size: 18px;

}



.featured-services .title a {

  color: #111;

}



.featured-services .description {

  font-size: 14px;

  line-height: 18px;

  margin-bottom: 0;

}



.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {

  color: #fff;

}



.featured-services .icon-box:hover .icon i {

  color: #fff;

}





#featured-services h4, #featured-services p, #featured-services a {

    color: white;

    text-align: center;

    display: block;

}

#featured-services p

{

  font-size: 14px;

  font-family: 'Open Sans';

}

#featured-services a{font-size: 12px; text-decoration:underline; line-height: 28px;}



#featured-services .oval_img {

    text-align: center;

    margin-bottom: 15px;

}



#featured-services h4 a {

        font-size: 30px;

    font-family: 'BebasNeue-Bold';

}



.icon-box a {

    color: #e42020;

}



@media (max-width: 768px) {

.featured-services .icon-box {padding: 23px 20px;width:100%;}

#featured-services .icon-box img {width: 40px;}

.featured-services .title{margin-bottom:0;}

#featured-services h4 a {font-size: 17px;}

#featured-services .description {display:none;}

#featured-services {margin-top: -150px;padding-bottom: 0;}

footer form input {width: 100% !important;}

#footer .footer-top .buttons a {width:230px !important;}



}

/*--------------------------------------------------------------

# About - Modern Layout

--------------------------------------------------------------*/

.about {
  position: relative;
  padding: var(--spacing-3xl) 0;
}

/* Decorative background elements */
.about::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about .content h3 {
  text-transform: uppercase;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

.about .content h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-medical);
  border-radius: var(--radius-full);
}



.about .content ul {

  list-style: none;

  padding: 0;

}



.about .content ul li {

  display: flex;

  align-items: flex-start;

  margin-bottom: 35px;

}



.about .content ul li:first-child {

  margin-top: 35px;

}



.about .content ul i {

  background: #fff;

  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);

  font-size: 24px;

  padding: 20px;

  margin-right: 15px;

  color: #422774;

  border-radius: 50px;

}



.about .content ul h5 {

  font-size: 18px;

  color: #555555;

}



.about .content ul p {

  font-size: 15px;

}



.about .content p:last-child {

  margin-bottom: 0;

}

#about p {

font-size: 16px;

    color: #585858;

    text-align: justify;

    font-family: 'Open Sans';

}



.nav-menu li a {

    text-transform: uppercase !important;

}



.more {display: none;}



sub {

    bottom: -0.005em;

    color: #8b0000;

}



input[type="file"] {

    border: none;

    padding: 0;

}











#about a {

    border: 1px solid #e94545;

    padding: 10px;

    width: 150px;

    text-align: center;

    border-radius: 50px;

    color: #746199;

    font-size: 12px;

    font-family: 'Open Sans';

    margin: 10px 0 15px 0;

}

@media (max-width: 768px) {

	#about{padding-top:0;}

}

/*--------------------------------------------------------------

# Skills

--------------------------------------------------------------*/

.skills .progress {

  height: 50px;

  display: block;

  background: none;

}



.skills .progress .skill {

  padding: 10px 0;

  margin: 0 0 6px 0;

  text-transform: uppercase;

  display: block;

  font-weight: 600;

  font-family: "Open Sans", sans-serif;

  color: #222222;

}



.skills .progress .skill .val {

  float: right;

  font-style: normal;

}



.skills .progress-bar-wrap {

  background: #e2eefd;

}





.skills .progress-bar {

  width: 1px;

  height: 10px;

  transition: .9s;

  background-color: #422774;

}



/*--------------------------------------------------------------

# Counts - Modern Animated Cards

--------------------------------------------------------------*/

.counts {
  padding: var(--spacing-3xl) 0;
  background: var(--gradient-medical);
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.counts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.counts .container {
  position: relative;
  z-index: 1;
}

.counts .count-box {
  padding: var(--spacing-2xl) var(--spacing-xl);
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
}

.counts .count-box:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.counts .count-box img {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md) auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
  transition: all var(--transition-base);
}

.counts .count-box:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(0) invert(1) drop-shadow(0 8px 30px rgba(255, 255, 255, 0.5));
}

.counts .count-box span {
  font-size: clamp(2.5rem, 5vw, 4rem);
  display: block;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
}

/*--------------------------------------------------------------

# Events

--------------------------------------------------------------*/

#events .block h4{font-weight:600;margin-top: 15px;}

#events .block p {

    padding: 0 20px;

    text-align: center;

}

.event_block {

    padding: 30px 0 10px 0;

}

/*--------------------------------------------------------------

# Clients

--------------------------------------------------------------*/

.clients {

  padding: 50px 0;

  text-align: center;

}

.client-carousel {

    position: relative;

}

.client-carousel .owl-nav button{

    position: absolute;

    top: 50%;

    transform: translate(0, -50%);

}

.client-carousel .owl-nav .owl-prev {

    left: -50px;

}

.client-carousel .owl-nav .owl-next {

    right: -50px;

}

.client-carousel .owl-nav i {

    font-size: 48px; color:#cacaca;

}

.client-carousel .owl-nav .owl-prev:hover i,

.client-carousel .owl-nav .owl-next:hover i,

.client-carousel .owl-nav .owl-prev:active i,

.client-carousel .owl-nav .owl-next:active i{

    color: #422774;

}

.client-carousel .item {

    background: #fff;

    box-shadow: 0px 0 6px 0px rgb(0 0 0 / 10%);

    padding: 20px;margin: 10px;

}

.clients img {

max-width: 96px;

transition: all 0.4s ease-in-out;

display: inline-block;

margin: 0 auto;}



/*.clients img:hover {

  transform: scale(1.15);

}*/



@media (max-width: 768px) {

  .clients img {

    max-width: 40%;

  }

	.client-carousel .owl-nav .owl-prev {

		left: 0;

	}

	.client-carousel .owl-nav .owl-next {

		right: 0;

	}

}



/*--------------------------------------------------------------

# Services - Modern Cards with Icons

--------------------------------------------------------------*/

.services {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  position: relative;
}

.services .icon-box {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  transition: all var(--transition-base);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-medical);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.services .icon-box:hover::before {
  transform: scaleX(1);
}

.services .icon-box:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}



.services .icon-box .icon {
  margin: 0 auto var(--spacing-lg) auto;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  border-radius: var(--radius-full);
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-md);
}

.services .icon-box .icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all var(--transition-base);
}

.services .icon-box:hover .icon::after {
  opacity: 0.3;
  inset: -15px;
}



.services .icon-box .icon i {

  color: #422774;

  font-size: 70px;

  transition: ease-in-out 0.3s;

}



.services .icon-box h4 {

  font-weight: 700;

  margin-bottom: 15px;

  font-size: 24px;

}



.services .icon-box h4 a {

  color: #323232;

    transition: ease-in-out 0.3s;

    font-size: 26px;

    font-family: 'Open Sans';

}



.services .icon-box p {

  line-height: 24px;

  font-size: 14px;

  margin-bottom: 0;

}

.services .icon-box p a{margin-left:5px;}

/*.services .icon-box:hover {

  border-color: #fff;

  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);

}*/



.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {

  color: #422774;

}

.services .icon-box:hover img {

    filter: brightness(0) invert(1);

}



.services .icon-box:hover .icon {

    background: #8b0000;

    box-shadow: 0 0 0 5px #fff inset;

}

/*--------------------------------------------------------------

# Testimonials

--------------------------------------------------------------*/

.testimonials {

  padding: 80px 0;

  background: url("../img/testimonials-bg.jpg") no-repeat;

  background-position: center center;

  background-size: cover;

  position: relative;

}





.testimonials .section-header {

  margin-bottom: 40px;

}



.testimonials .testimonial-item {

  text-align: center;

  color: #fff;

}



.testimonials .testimonial-item .testimonial-img {

  width: 200px;

  border-radius: 50%;

  border: 6px solid rgb(66 39 116);

  margin: 0 auto;

}



.testimonials .testimonial-item h3 {

  font-size: 20px;

  margin: 10px 0 5px 0;

  color: #fff;

  letter-spacing: 3px;

}



.testimonials .testimonial-item h4 {

  font-size: 14px;

  color: #fff;

  font-family: "Open Sans", sans-serif;

  margin: 0 0 15px 0;

}



.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {

  color: rgba(255, 255, 255, 0.4);

  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 auto 15px auto;

  color: #eee;

}



.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: rgba(255, 255, 255, 0.4) !important;

}



.testimonials .owl-dot.active {

  background-color: #422774 !important;

}



@media (min-width: 1024px) {

  .testimonials {

    background-attachment: fixed;

  }

}



@media (min-width: 992px) {

  .testimonials .testimonial-item p {

    width: 80%;

  }

}



/*--------------------------------------------------------------

# Team

--------------------------------------------------------------*/

.team {

  padding: 60px 0;

}



.team .member {

  margin-bottom: 20px;

  overflow: hidden;

  border-radius: 4px;

  background: #fff;

  box-shadow: rgb(0 0 0 / 20%) 0px 10px 15px, rgb(0 0 0 / 20%) 0px 10px 10px;

}



.team .member .member-img {

  position: relative;

  overflow: hidden;

}



.team .member .social {

  position: absolute;

  left: 0;

  bottom: 30px;

  right: 0;

  opacity: 0;

  transition: ease-in-out 0.3s;

  text-align: center;

}



.team .member .social a {

  transition: color 0.3s;

  color: #222222;

  margin: 0 3px;

  padding-top: 7px;

  border-radius: 4px;

  width: 36px;

  height: 36px;

  background: #422774;

  display: inline-block;

  transition: ease-in-out 0.3s;

  color: #fff;

}



.team .member .social a:hover {

  background: #422774;

}



.team .member .social i {

  font-size: 18px;

}



.team .member .member-info {

  padding: 25px 15px;

}



.team .member .member-info h4 {

    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #422774;
    text-align: center;

}



.team .member .member-info span {

  display: block;

  font-size: 13px;

  font-weight: 400;

  color: gray;
  text-align: center;

}



.team .member .member-info p {

    font-size: 13px;
    line-height: 20px;
    color: gray;
    margin: 5px 0 0 0;

}



.team .member:hover .social {

  opacity: 1;

  bottom: 15px;

}



/*--------------------------------------------------------------

# Frequently Asked Questions

--------------------------------------------------------------*/

.faq {

  padding: 60px 0;

}



.faq .faq-list {

  padding: 0;

  list-style: none;

}



.faq .faq-list li {

  padding: 0 0 20px 25px;

}



.faq .faq-list a {

  display: block;

  position: relative;

  font-family: #422774;

  font-size: 18px;

  font-weight: 500;

}



.faq .faq-list i {

  font-size: 18px;

  position: absolute;

  left: -25px;

  top: 6px;

}



.faq .faq-list p {

  margin-bottom: 20px;

  font-size: 15px;

}



.faq .faq-list a.collapse {

  color: #422774;

}



.faq .faq-list a.collapsed {

  color: #343a40;

}



.faq .faq-list a.collapsed:hover {

  color: #422774;

}



.faq .faq-list a.collapsed i::before {

  content: "\eab2" !important;

}



/*--------------------------------------------------------------

# Contact

--------------------------------------------------------------*/

.contact .info-box {

  color: #444444;

  text-align: center;

  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);

  padding: 20px 0 30px 0;

}



.contact .info-box i {

  font-size: 32px;

  color: #422774;

  border-radius: 50%;

  padding: 8px;

  border: 2px dotted #b3d1fa;

}



.contact .info-box h3 {

  font-size: 20px;

  color: #777777;

  font-weight: 700;

  margin: 10px 0;

}



.contact .info-box p {

  padding: 0;

  line-height: 24px;

  font-size: 14px;

  margin-bottom: 0;

}



.contact .php-email-form {

  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);

  padding: 30px;

}



.contact .php-email-form .validate {

  display: none;

  color: red;

  margin: 0 0 15px 0;

  font-weight: 400;

  font-size: 13px;

}



.contact .php-email-form .error-message {

  display: none;

  color: #fff;

  background: #ed3c0d;

  text-align: left;

  padding: 15px;

  font-weight: 600;

}



.contact .php-email-form .error-message br + br {

  margin-top: 25px;

}



.contact .php-email-form .sent-message {

  display: none;

  color: #fff;

  background: #18d26e;

  text-align: center;

  padding: 15px;

  font-weight: 600;

}



.contact .php-email-form .loading {

  display: none;

  background: #fff;

  text-align: center;

  padding: 15px;

}



.contact .php-email-form .loading:before {

  content: "";

  display: inline-block;

  border-radius: 50%;

  width: 24px;

  height: 24px;

  margin: 0 10px -6px 0;

  border: 3px solid #18d26e;

  border-top-color: #eee;

  -webkit-animation: animate-loading 1s linear infinite;

  animation: animate-loading 1s linear infinite;

}



.contact .php-email-form input, .contact .php-email-form textarea {

  border-radius: 0;

  box-shadow: none;

  font-size: 14px;

}



.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {

  border-color: #422774;

}



.contact .php-email-form input {

  padding: 20px 15px;

}



.contact .php-email-form textarea {

  padding: 12px 15px;

}



.contact .php-email-form button[type="submit"] {

  background: #422774;

  border: 0;

  padding: 10px 30px;

  color: #fff;

  transition: 0.4s;

  border-radius: 4px;

}



.contact .php-email-form button[type="submit"]:hover {

  background: #422774;

}



@-webkit-keyframes animate-loading {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



@keyframes animate-loading {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Footer - Modern Gradient Design

--------------------------------------------------------------*/

#footer {
  padding: 0;
  color: var(--white);
  font-size: var(--text-base);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Modern gradient overlay */
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 191, 166, 0.1) 100%);
  pointer-events: none;
}

/* Decorative elements */
#footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
  pointer-events: none;
}



#footer .footer-newsletter {

  padding: 50px 0;

  background: #f1f6fe;

  text-align: center;

  font-size: 15px;

}



#footer .footer-newsletter h4 {

  font-size: 24px;

  margin: 0 0 20px 0;

  padding: 0;

  line-height: 1;

  font-weight: 600;

}



#footer .footer-newsletter form {

  margin-top: 30px;

  background: #fff;

  padding: 6px 10px;

  position: relative;

  border-radius: 4px;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);

  text-align: left;

}



#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: 0;

  right: 0;

  bottom: 0;

  border: 0;

  background: none;

  font-size: 16px;

  padding: 0 20px;

  background: #422774;

  color: #fff;

  transition: 0.3s;

  border-radius: 0 4px 4px 0;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

}



#footer .footer-newsletter form input[type="submit"]:hover {

  background: #0d58ba;

}



#footer .footer-top {
  padding: var(--spacing-3xl) 0 var(--spacing-2xl) 0;
  background: transparent;
  position: relative;
  z-index: 1;
}



#footer .footer-top .footer-contact {

  margin-bottom: 30px;

}



#footer .footer-top .footer-contact h3 {

  font-size: 24px;

  margin: 0 0 15px 0;

  padding: 2px 0 2px 0;

  line-height: 1;

  font-weight: 700;

}



#footer .footer-top .footer-contact h3 span {

  color: #422774;

}



#footer .footer-top .footer-contact p {

  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;

  font-family: "Open Sans", sans-serif;

  color: #777777;

}



#footer .footer-top h4 {

  font-size: 16px;

  font-weight: bold;

  color: #444444;

  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: #422774;

  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: #777777;

  transition: 0.3s;

  display: inline-block;

  line-height: 1;

}



#footer .footer-top .footer-links ul a:hover {

  text-decoration: none;

  color: #422774;

}



#footer .footer-top .social-links a {

    font-size: 18px;

    display: inline-block;

    background: transparent;

    color: #fff;

    line-height: 1;

    padding: 5px 0;

    margin-right: 4px;

    border-radius: 4px;

    text-align: center;

    transition: 0.3s;

}



#footer .footer-top .social-links i:hover {

  background: #422774;

  color: #fff;

  text-decoration: none;

}

#footer .footer-top .buttons {

    margin-top: 30px;

}

#footer .footer-top .buttons a {
  padding: var(--spacing-md) var(--spacing-xl);
  text-align: center;
  margin: 0 auto var(--spacing-md);
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: var(--radius-full);
  width: 250px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

#footer .footer-top .buttons a:hover {
  background: var(--gradient-medical);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#footer .copyright {

      text-align: center;

    color: #dfdfdf;

    font-family: 'Open Sans';

    font-size: 13px;



}



#footer .credits {

  float: right;

  text-align: center;

  font-size: 13px;

  color: #444444;

}



@media (max-width: 768px) {

  #footer .copyright, #footer .credits {

    float: none;

    text-align: center;

    padding: 2px 0;

  }

	.ft-left {

	padding-left: 20px;

	}

}







.d-flex.menu {
    background: var(--gradient-medical);
    margin-top: var(--spacing-sm);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}



.info strong {

    font-size: 14px;

    margin-right: 15px;

    font-family: 'Open Sans';

}



.contact-info.mr-auto span {

    font-size: 12px;

}



.info i {

    border: 2px solid #422774;

    padding: 4px;

    border-radius: 50%;

    margin: 0 5px;

    color: #422774;

}



#header .social-links i {

    /*color: gray;*/
    color: black;

    padding: 5px 7px 5px 3px;

    border-right: 1px solid;

}



.social-links{

    text-align: right;

}



.nav-menu > ul {

    display: flex;

    justify-content: space-between;

}



.nav-menu input[type="text"]

{

  background: #341d60;

  border:none;border-radius: 0;

    height: 43px;

}

.nav-menu input[type="text"]:focus{box-shadown:none;outline:0;}



section#counts {

    background: #422774;

}



.count-box img {

    margin-bottom: 15px;

}





section#services {

    background: #f9f2f2;

}





#services h2 , .section-title h2 {

    background: none;

    /*color: black;*/

    font-size: 36px;

    font-family: 'BebasNeue-Bold';

}



#clients p {

    font-size: 16px;

    font-family: 'Open Sans';

    color: #585858;

}









.social-links.mt-3 {

    text-align: center;

}





footer .footer-links i {

    border: 1px solid;

    padding: 5px;

    border-radius: 50px;

    font-size: 15px;

}



footer form input {

width: 262px;;

margin-top: 10px;

}





footer input[type="email"] {

    padding: 8px 10px;

    background: transparent;

    border: 1px solid white;

    border-radius: 40px;

    font-size: 13px;

    font-family: 'Open Sans';

}



footer input[type="submit"] {

    background: white;

    border: none;

    padding: 8px 10px;

    color: #8b0f00;

    border-radius: 40px;

    font-size: 12px;

    font-family: 'Open Sans';

    font-weight: bold;

}

.ft-left .ft-icon,

.ft-left .ft-content {

    display: inline-block;

    vertical-align: middle;    margin-bottom: 0;

}

.ft-left .ft-icon {

    margin-right: 12px;

}

.ft-left .ft-content {

}

.footer_copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg) 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}









.footer-contact i, .footer-contact strong, .footer-contact {

    color: white;

}



.footer-contact div {

    margin-bottom: 10px;

}







.footer-contact strong {

    font-family: BebasNeue-Bold;

    font-size: 17px;

}



.footer-contact i {

    font-size: 17px;

}





.footer-contact span {

    font-family: 'Open Sans';

    font-size: 13px;

    color: #d0d0d0;

}





#course p {

    font-size: 16px;

    color: #686868;

    font-family: 'Open Sans';

    text-align: left;

}



.row.course_block .oval_img img {

/*    width: 100%;*/
        width: 500px;
        height: 300px;


}

/*avatar*/
.avatar {
  vertical-align: middle;
  width: 370px;
  height: 296px;
}

.points {

    padding: 0px 0 20px 0px;

    margin-bottom: 20px;

}



.ul_point li{font-size:15px}

.ul_point {padding: 0 30px;list-style: none;text-align: center;}



.course_block {

    padding: 30px 0 10px 0;

}





.block a, .block h4 {

    text-align: center;

	margin-top:15px;

}



.block {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  position: relative;
}

.block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-medical);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.block:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

.block:hover::before {
  opacity: 0.05;
}

.block h4 a {
  font-size: var(--text-xl);
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.block:hover h4 a {
  color: var(--primary-color);
}





.block .link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--gradient-medical);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  text-align: center;
  margin: var(--spacing-md) auto var(--spacing-lg);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.block .link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.block .link::after {
  content: "→";
  transition: transform var(--transition-fast);
}

.block .link:hover::after {
  transform: translateX(4px);
}





@media (min-width: 768px) AND (max-width: 1023px)

{



.oval_icon {

    width: 25%;

}



}



@media (min-width: 768px) AND (max-width: 1500px)

{

  .points {

    height: 200px !important;

}



}



@media (min-width:320px) AND (max-width:767px)

{

.mobile-nav a {
    padding: 10px 13px;
}


  .social-links a.btn{padding: 8px;}



  .course_block .col-md-6.col-lg-6 {

    padding: 0 25px;

}





    .featured-services .icon-box {

    padding: 23px 20px;

    width: 100%;

}



.oval_icon

{

  width:50%;

}



.social-links{

    text-align: center;

}



.info {

    margin: 15px 0;

    padding: 0px 5px;

}



.mobile-nav-toggle

{

top:30px;

}



#header .d-flex {



    display: contents !important;

}





.info span {

    margin-bottom: 10px;

    display: block;

    font-size: 15px;

}





.mobile-nav form {



   padding: 10px 20px;

}





footer form input {

    width: 90%;

}





#footer .footer-top .footer-links {

    text-align: center;

}





.buttons {

    margin-top: 10px;

}



}







@media (min-width:768px) AND (max-width:992px)

{



.buttons a

{

width:auto;

}



.featured-services .icon-box

{

  padding: 10px;

}





.info strong

{

  font-size: 11px;

}



.nav-menu input[type="text"] {

    width: 110px;

}



}
















/*======= how to apply ===============*/

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #422774;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 88%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #422774;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}


.timeline .btn {
    background: #422774 !important;
    color: white;
    padding: 5px 10px;
    margin-right: 10px;
}

ul.timeline li h5 {
    font-size: 18px;
    margin-bottom: 7px;
    display: block;
    color: #422774;
    font-family: 'Open Sans';
    font-weight: 700;
}

/* ===== how to apply end =============*/




/*------------- login regiter styling  ------------------*/



.bg-light {

    background-color: #422774 !important;

    color: white;

    width: 500px;

    margin: 0px auto;

    border-radius: 10px;

    padding: 10px 0;

    text-align: center;

}



article.card-body .btn_block a {

    background: transparent;

    color: white;

    border: 1px solid white;

}





.form_logo img {

    display: block;

    margin: 0 auto;

}





.form_bg {



        padding: 100px 0;

}

.form_bg p a {

    color: #fff;

}

.card-body{max-width: 430px; width: 430px;}

.card-body form button {

    background: transparent;

    border: 1px solid white;

}

.btn-twitter {

    background: #08a0e9;

}

.btn-facebook {

    background: #3b5998;

}



input:focus-visible {

    outline: none !important;

}



.card-header:focus-visible {

    outline: none !important;

}

@media (max-width: 767px) {

    .bg-light{width:100%;}

  .card-body{max-width: 100%; width: 100%;}

}

/*--------- admission --------*/



#admission .card-body {max-width: 100%;width: 100%;}



#admission button.btn { background: #422774 !important; border: 1px solid; padding: 10px 15px !important; border-radius: 10px;}



/*---------- blog -------------*/

.post_block p {font-size: 13px;}



  .post_block {position: relative;text-align: center;color: white;}



.bottom-left {position: absolute;bottom: 0px;left: 0px;background: #422774;}



.text_block {background: #fafafa;padding: 20px 10px;}



.link {

    display: block;

    background: #422774;

    color: white;

    padding: 7px;

    width: 100px;

    text-align: center;

    margin: 0 auto;

    font-size: 12px;

    border-radius: 50px;

}

.link:hover{color:white;}

hr {
    margin-top: 5px;
    margin-bottom: 10px;
    border-top: 2px solid rgb(66 39 116);
    width: 60px;
    height: 0px;
}



/*-------- careers ----------*/



.accordion {

  background-color: #eee;

  color: #444;

  cursor: pointer;

  padding: 18px;

  width: 100%;

  border: none;

  text-align: left;

  outline: none;

  font-size: 15px;

  transition: 0.4s;

}



.accordion:after {

  content: '\002B';

  color: #777;

  font-weight: bold;

  float: right;

  margin-left: 5px;

}



.panel {

  padding: 0 18px;

  background-color: white;

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.2s ease-out;

}



.accordion:after{display:none;}

.crer-section .card-header:focus-visible {

    outline: none !important;

}

.crer-section .card-body {

    max-width: 100%;

    width: 100%;

}



  .accordion .card-header:after {

    font-family: 'IcoFont'!important;

    content: "\ef9a";

    float: right;

}

.accordion .card-header.collapsed:after {

    /* symbol for "collapsed" panels */

       content: "\efc2";

}



/*-------- contact us -----------*/



.add_block{width: 100%;}

input.btn { background: #422774; border: 1px solid; padding: 10px 15px !important; border-radius: 10px;}

/*.contact_form { background: #341d60;}*/

.con_sec iframe { height: 320px; width: 100%;}

.con_sec { padding: 30px 0;}

.add_block a{color:black;}

.con_sec .section-title {padding-bottom: 10px;text-align: left;}

.add_block {padding-bottom: 20px;}

.add_block i {

    color: #422774;

    font-size: 17px;

}



/*------- download --------*/

.tbl_down a:hover {

    text-decoration: none;

    color: #007bff;

}



.download .table td, .download .table th { padding: 15px !important;}



/*---- media query --------*/





@media (min-width: 320px) AND (max-width: 767px)

{

  .con_sec iframe {padding: 0px 15px 20px 15px;}

  .text_block{margin-bottom: 20px;}

}

/*------ table --------*/

  .tbl_down thead th {
    background: #422774 !important;
    color: #fff;
}

 .tbl_down {

  border: 1px solid #ccc;

  border-collapse: collapse;

  margin: 0;

  padding: 0;

  width: 100%;

  .tbl_down-layout: fixed;

}



.tbl_down caption {

  font-size: 1.5em;

  margin: .5em 0 .75em;

}



.tbl_down tr {

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  padding: .35em;

}



.tbl_down th,

.tbl_down td {

  padding: .625em;

  text-align: center;

}



.tbl_down th {

  font-size: .85em;

  letter-spacing: .1em;

  text-transform: uppercase;

}



@media screen and (max-width: 600px) {

  .tbl_down {

    border: 0;

  }



  .tbl_down caption {

    font-size: 1.3em;

  }





  .tbl_down thead {

    border: none;

    clip: rect(0 0 0 0);

    height: 1px;

    margin: -1px;

    overflow: hidden;

    padding: 0;

    position: absolute;

    width: 1px;

  }



  .tbl_down tr {

    border-bottom: 3px solid #ddd;

    display: block;

    margin-bottom: .625em;

  }



  .tbl_down td {

    border-bottom: 1px solid #ddd;

    display: block;

    font-size: .8em;

    text-align: right;

  }



  .tbl_down td::before {

    /*

    * aria-label has no advantage, it won't be read inside a table

    content: attr(aria-label);

    */

    content: attr(data-label);

    float: left;

    font-weight: bold;

    text-transform: uppercase;

  }



}
