/*
  Theme Name: NewBiz
  Theme URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #2c3e50;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

a {
  color: #3498db;
  transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: #2980b9;
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s ease;
  z-index: 11;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding-bottom: 10px;
  /* margin: 7px 0; */

  max-height: 60px;
  width: 200px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  padding: 200px 0 120px 0;
  position: relative;
  overflow: hidden;
}

#intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

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

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0 20px 20px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#intro .intro-info .btn-get-started::before,
#intro .intro-info .btn-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

#intro .intro-info .btn-get-started:hover::before,
#intro .intro-info .btn-services:hover::before {
  left: 0;
}

#intro .intro-info .btn-get-started {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#intro .intro-info .btn-get-started:hover {
  background: #fff;
  border-color: #fff;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
  background: transparent;
}

#intro .intro-info .btn-services:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #2c3e50;
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
  color: #667eea;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
  color: #007bff;
}

.main-nav .drop-down>a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down>a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\f077";
}

.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-toggle {
  position: fixed;
  right: 0;
  top: 0;
  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 {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/

#about {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

#about .about-container .background {
  margin: 20px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

#about .about-container .background:hover {
  transform: scale(1.02);
}

#about .about-container .content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}

#about .about-container .title {
  color: #1a1a2e;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}

#about .about-container p {
  line-height: 1.8;
  color: #556877;
  font-size: 16px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
}

#about .about-container .icon-box:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
  border-left-color: #667eea;
}

#clients {
  padding: 80px 0;
  background: #fff;
}

#clients .section-header h3 {
  color: #1a1a2e;
  font-weight: 800;
}

#clients .client-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 15px;
  height: 120px;
}

#clients .client-logo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

#clients .client-logo img {
  max-width: 100%;
  max-height: 80px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

#clients .client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

#about .about-container .icon-box .icon {
  float: left;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

#about .about-container .icon-box .icon i {
  color: #fff;
  font-size: 32px;
}

#about .about-container .icon-box:hover .icon {
  transform: rotateY(360deg);
}

#about .about-container .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  color: #1a1a2e;
}

#about .about-container .icon-box .title a {
  color: #1a1a2e;
  transition: color 0.3s ease;
}

#about .about-container .icon-box:hover .title a {
  color: #667eea;
}

#about .about-container .icon-box .description {
  margin-left: 95px;
  line-height: 1.7;
  font-size: 15px;
  color: #556877;
}

#about .about-extra {
  padding-top: 80px;
}

#about .about-extra h4 {
  font-weight: 700;
  font-size: 28px;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# About Section — Full Redesign
--------------------------------------------------------------*/

.about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* --- Intro Block --- */

.about-intro-block {
  margin-bottom: 80px;
}

.about-intro-text h3 {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 18px;
}

.about-intro-text h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-text > p {
  font-size: 16px;
  color: #556877;
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2c3e50;
  font-weight: 500;
}

.about-highlight-item i {
  color: #667eea;
  font-size: 18px;
  flex-shrink: 0;
}

.about-intro-img {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.about-intro-img img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  width: 100%;
}

.about-intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.about-intro-badge i {
  font-size: 28px;
}

.about-intro-badge span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* --- Process Steps --- */

.about-process {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
  border-radius: 28px;
  padding: 60px 50px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.about-process::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-process-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-process-header h3 {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

.about-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.about-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.about-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.about-step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px;
  transition: all 0.3s ease;
}

.about-step:hover .about-step-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-step-icon i {
  font-size: 28px;
  color: #667eea;
  transition: color 0.3s ease;
}

.about-step:hover .about-step-icon i {
  color: #fff;
}

.about-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.about-step p {
  font-size: 14px;
  color: #556877;
  line-height: 1.7;
  margin: 0;
}

/* --- TEF Block --- */

.about-tef-block {
  padding: 60px 0 0;
}

.about-tef-visual {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
}

.tef-logo-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tef-logo-block i {
  font-size: 42px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.tef-logo-block strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tef-logo-block span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  display: block;
}

.tef-origin {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tef-origin strong {
  color: #fff;
}

.tef-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.tef-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
}

/* --- Level Cards --- */

.about-levels-block {
  padding-left: 30px;
}

.about-levels-block h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 28px;
}

.level-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.level-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.level-card:hover {
  transform: translateX(6px);
  border-color: currentColor;
}

.level-a1 { background: rgba(102, 126, 234, 0.07); }
.level-a1:hover { border-color: rgba(102, 126, 234, 0.3); }

.level-a2 { background: rgba(240, 147, 251, 0.07); }
.level-a2:hover { border-color: rgba(240, 147, 251, 0.35); }

.level-b1 { background: rgba(67, 233, 123, 0.07); }
.level-b1:hover { border-color: rgba(67, 233, 123, 0.35); }

.level-badge {
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}

.level-a1 .level-badge { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }
.level-a2 .level-badge { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: #fff; }
.level-b1 .level-badge { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); color: #fff; }

.level-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.level-info p {
  font-size: 13px;
  color: #556877;
  line-height: 1.6;
  margin: 0;
}

.level-public {
  font-size: 14px;
  color: #556877;
  background: rgba(102, 126, 234, 0.06);
  border-left: 3px solid #667eea;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin: 0;
  line-height: 1.6;
}

.level-public i {
  color: #667eea;
  margin-right: 6px;
}

.level-public strong {
  color: #2c3e50;
}

/* Services Section
--------------------------------*/

#services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

#services .box {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

#services .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

#services .box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.2);
}

#services .icon {
  position: absolute;
  left: 30px;
  top: 40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

#services .box:hover .icon {
  transform: rotateY(360deg);
}

#services .icon i {
  font-size: 40px;
  color: #fff;
  line-height: 1;
}

#services .title {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 22px;
  color: #1a1a2e;
}

#services .title a {
  color: #1a1a2e;
  transition: color 0.3s ease;
}

#services .box:hover .title a {
  color: #667eea;
}

#services .description {
  font-size: 15px;
  margin-left: 100px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #556877;
}

#why-us {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

#why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 0 15px;
  padding: 40px 25px;
  text-align: center;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

#why-us .card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

#why-us .card:hover::before {
  opacity: 1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#why-us .card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

#why-us .card i {
  font-size: 56px;
  padding-top: 15px;
  padding-bottom: 20px;
  color: #fff;
  display: inline-block;
  transition: transform 0.4s ease;
}

#why-us .card:hover i {
  transform: scale(1.2) rotateY(360deg);
}

#why-us .card h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

#why-us .card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#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;
}

#testimonials .owl-dot.active {
  background-color: #007bff;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #007bff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #0067d5;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #00428a;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #004a99;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  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 .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#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 li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

/*--------------------------------------------------------------
# Nav CTA Button
--------------------------------------------------------------*/

.main-nav a.nav-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
  transition: all 0.3s ease;
}

.main-nav a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.55);
  color: #fff !important;
}

/*--------------------------------------------------------------
# Intro Enhancements
--------------------------------------------------------------*/

.intro-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.intro-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.intro-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 24px;
  width: fit-content;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.intro-stat strong {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.intro-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.intro-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.intro-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.intro-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatParticle 8s infinite ease-in-out;
}

.intro-particles span:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -80px; animation-delay: 0s; }
.intro-particles span:nth-child(2) { width: 180px; height: 180px; bottom: 20px; left: 5%; animation-delay: 2s; }
.intro-particles span:nth-child(3) { width: 100px; height: 100px; top: 40%; right: 20%; animation-delay: 4s; }
.intro-particles span:nth-child(4) { width: 60px; height: 60px; top: 20%; left: 30%; animation-delay: 1s; }
.intro-particles span:nth-child(5) { width: 220px; height: 220px; bottom: -60px; right: 30%; animation-delay: 3s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 0.8; }
}

/*--------------------------------------------------------------
# Centers Section
--------------------------------------------------------------*/

#centers {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

#centers::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.center-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.center-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.center-card-header {
  padding: 30px 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100px;
}

.center-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.center-card-icon {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.center-card-body {
  padding: 28px;
}

.center-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.center-card-body h4 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.center-address {
  font-size: 14px;
  color: #556877;
  line-height: 1.8;
  margin-bottom: 20px;
}

.center-address i {
  color: #667eea;
  margin-right: 6px;
  font-size: 14px;
}

.center-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  padding: 7px 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.center-map-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
  transform: translateX(4px);
}

.centers-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 25px 40px;
  margin-top: 20px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
  flex-wrap: wrap;
  gap: 15px;
}

.centers-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 0 20px;
}

.centers-contact-item i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.centers-contact-item span {
  font-size: 15px;
  font-weight: 600;
}

.centers-contact-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

/*--------------------------------------------------------------
# Contact Section (Redesigned)
--------------------------------------------------------------*/

#contact {
  box-shadow: none;
  padding: 100px 0;
  overflow: hidden;
  background: #f8f9fa;
}

#contact .section-header {
  padding-bottom: 50px;
}

.contact-info-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-map {
  width: 100%;
}

.contact-info-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 20px 20px 0 0 !important;
}

.contact-info-details {
  padding: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contact-info-icon i {
  color: #fff;
  font-size: 18px;
}

.contact-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #667eea;
  margin-bottom: 2px;
}

.contact-info-item p {
  margin: 0;
  font-size: 14px;
  color: #556877;
  line-height: 1.5;
}

.contact-form-block {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-block label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #444;
  margin-bottom: 8px;
}

#contact .form-control,
.contact-form-block .form-control {
  border: 2px solid #eef0f4;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2c3e50;
  transition: all 0.3s ease;
  background: #fafbff;
  box-shadow: none;
}

#contact .form-control:focus,
.contact-form-block .form-control:focus {
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  outline: none;
}

.contact-form-block button[type="submit"],
#contact .form button[type="submit"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 0;
  border-radius: 50px;
  padding: 14px 45px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-form-block button[type="submit"]:hover,
#contact .form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.55);
}

/*--------------------------------------------------------------
# Qualiopi Section
--------------------------------------------------------------*/

#qualiopi {
  padding: 60px 0;
}

.qualiopi-certificate {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
  transition: all 0.4s ease;
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.qualiopi-certificate:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

.certificate-content {
  text-align: center;
}

.certificate-icon {
  margin-bottom: 25px;
}

.certificate-icon i {
  font-size: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.certificate-content h4 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.certificate-content p {
  font-size: 16px;
  color: #556877;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-certificate {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-certificate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-certificate:hover::before {
  left: 0;
}

.btn-certificate:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: #fff;
  text-decoration: none;
}

.btn-certificate i {
  margin-right: 10px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Formation Pages
--------------------------------------------------------------*/

.formation-subtitle {
  color: #667eea !important;
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

.formation-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.formation-card:hover::before {
  transform: scaleY(1);
}

.formation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.formation-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.formation-card .card-icon i {
  font-size: 32px;
  color: #fff;
}

.formation-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.formation-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #667eea;
  margin-top: 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.formation-card h4 i {
  margin-right: 10px;
  font-size: 22px;
}

.formation-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #556877;
  margin-bottom: 15px;
}

.formation-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.formation-list li {
  padding: 10px 0 10px 35px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #556877;
}

.formation-list li::before {
  content: '\f00c';
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 10px;
  color: #667eea;
  font-size: 16px;
  font-weight: 600;
}

.competence-block {
  margin-top: 25px;
  padding: 20px;
  background: rgba(102, 126, 234, 0.03);
  border-radius: 10px;
  border-left: 3px solid #667eea;
}

.competence-block:first-child {
  margin-top: 0;
}

.btn-formation {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-formation::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-formation:hover::before {
  left: 0;
}

.btn-formation:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: #fff;
  text-decoration: none;
}

.btn-formation i {
  margin-right: 10px;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  .about-process {
    padding: 50px 25px;
  }

  .about-levels-block {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-intro-badge {
    bottom: -16px;
    left: 10px;
  }

  .intro-stats {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .intro-stat-divider {
    display: none;
  }

  .centers-contact-bar {
    padding: 20px;
    gap: 10px;
  }

  .centers-contact-divider {
    display: none;
  }

  .centers-contact-item {
    padding: 8px 10px;
  }

  .contact-form-block {
    padding: 25px;
  }

  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 150px 0 80px 0;
  }

  #intro .intro-img {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }

  #intro .intro-info {
    width: 100%;
    float: none;
    padding-right: 0;
    text-align: center;
  }

  #intro .intro-info h2 {
    font-size: 42px;
  }

  #about .about-container .icon-box {
    margin-bottom: 20px;
  }

  #services .box {
    margin-bottom: 30px;
  }

  #why-us .card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info h2 {
    font-size: 32px;
  }

  #intro .intro-info .btn-get-started,
  #intro .intro-info .btn-services {
    padding: 14px 30px;
    font-size: 13px;
    margin: 10px 10px;
  }

  .section-header h3 {
    font-size: 28px;
  }

  .section-header p {
    width: 80%;
  }

  #about .about-container .icon-box .icon {
    width: 60px;
    height: 60px;
  }

  #about .about-container .icon-box .title,
  #about .about-container .icon-box .description {
    margin-left: 75px;
  }

  #services .icon {
    width: 60px;
    height: 60px;
  }

  #services .icon i {
    font-size: 28px;
  }

  #services .title,
  #services .description {
    margin-left: 80px;
  }

  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  .about-intro-text h3 {
    font-size: 26px;
  }

  .about-process {
    padding: 40px 20px;
  }

  .about-tef-visual {
    padding: 28px;
  }

  .about-levels-block h3 {
    font-size: 22px;
  }

  .level-card {
    flex-direction: column;
    gap: 12px;
  }

  #intro {
    padding: 100px 0 20px 0;
  }

  .intro-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .center-card-header {
    min-height: 80px;
    padding: 20px;
  }

  .center-number {
    font-size: 36px;
  }

  .centers-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .centers-contact-item {
    padding: 0;
  }
}