/*

==================================================
CSS SITEMAP >>>>

  01. GENERAL CSS
  02. HEADER CSS
  03. SOCIAL ICONS CSS
  04. WELCOME BLOCK CSS
  05. ABOUT BLOCK CSS
  06. SERVICES BLOCK CSS
  07. WORK BLOCK CSS
  08. CONTACT BLOCK CSS
  09. TESTIMONOALS BLOCK CSS
  10. SKILLS BLOCK CSS


==================================================*/

/*==============================================
01. GENERAL CSS
================================================*/

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body {
  font: 16px/1.6 'Raleway', Arial, Helvetica, sans-serif;
  color: #fff;
  text-align:center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  scroll-behavior: smooth;
  padding-top: 70px;
}
img {
  border: 0;
  max-width: 100%;
}
html {
  -ms-overflow-style: scrollbar;
}
.alltrans,
.social-icons li a,
.owl-nav > button,
.owl-nav > button:after,
.counter-box,
.about-img:after,
.gallery-img img,
.form-control,
.owl-dot,
.subscribe-row,
.close-btn,
.close-btn:before,
.close-btn:after,
.tag-btn,
.btn {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #fff;
  outline: none;
  text-decoration: underline;
}
@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
  a:active {
    background-color: transparent;
  }
}
p {
  margin: 0 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin: 0 0 20px;
  font-weight: 600;
  text-transform:uppercase;
}
h1,
h2 {
  font-size: 32px;
}
h3 {
  font-size: 30px;
  font-weight: 600;
}
h4 {
  font-size: 22px;
  font-weight: 600;
}
h5 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
h6 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
#main {
  padding: 0;
  background: #fff;
}
.no-margin {
  margin: 0 !important;
}
figure {
  margin:0;
}
.opacity-no {
  opacity: 1 !important;
}

video {
  display: none;
}
#video {
  position: relative;
  z-index: 0;
}
#video:after {
  display: none;
}
.preloader {
  display: none;
}
.wrapper-background-dark:after {
  background: #222;
  opacity:0.95;
}
.section-inner {
  padding: 60px 30px;
}
.fp-scrollable {
  height: auto !important;
}
#fp-nav ul li a span {
 display: none;
}

.btn {
  background: #fff;
  color: #222;
  text-align:center;
  line-height:52px;
  padding:0 35px;
  border-radius: 0px;
  text-transform:uppercase;
  font-weight:600;
  border:2px solid transparent;
  border-radius: 10px;
}
.btn:hover, .btn:focus {
  color:#fff;
  border-color:#fff;
  background:none;
}
.btn:focus {
  box-shadow:none;
  outline:none;
}
.btn.btn-xs {
  line-height:34px;
  font-size:12px;
  padding:0 20px;
  font-weight: 500;
}
.btn.btn-outline {
  background:none;
  border-color:#fff;
  color:#fff;
  border-width:1px;
}
.btn.btn-outline:hover, .btn.btn-outline:focus {
  background:#fff;
  color:#222;
}
.btn.btn-dark {
  color: #222;
  border-color: #222;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: #222;
  color: #fff;
}
.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.owl-carousel .owl-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 auto;
}
.preloader {
  background: -moz-linear-gradient(top, #4096ee 0%, #39ced6 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #4096ee 0%,#39ced6 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #4096ee 0%,#39ced6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#39ced6',GradientType=0 ); /* IE6-9 */
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  text-align: center;
}
.preloader-bounce {
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.preloader-bounce > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0.3em;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: bounce 0.6s infinite alternate;
  animation: bounce 0.6s infinite alternate;
  background: #fff;
}
.preloader-bounce > span:nth-child(2){
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  background: #fff;
}
.preloader-bounce > span:nth-child(3){
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  background: #fff;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }
}

#fullpage {
  z-index: auto;
  height: auto;
}


/*==============================================
02. HEADER CSS
================================================*/
#header {
  padding: 20px 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(45, 45, 45, 0.98) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.container-fluid {
  padding:0 20px;
}
a#logo {
  text-decoration: none;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
}
.logo-text {
  text-decoration: none;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
}

.logo-text {
  text-decoration: none;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.navbar {
  padding: 0;
}
.navbar-toggle {
  display:none;
}
.navbar-nav {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.navbar-nav li {
  margin-left: 30px;
}
.navbar-nav li a {
  color:#fff;
  font-size: 15px;
  text-decoration:none;
  display:block;
  font-weight: 500;
  opacity: 0.9;
}
.navbar-nav li a:after {
  content:'';
  display:block;
  height: 2px;
  background:#fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform:scale(0);
  transform:scale(0);
  margin-top: 4px;
}
.navbar-nav li a:hover:after, .navbar-nav li.active a:after{
  -webkit-transform:scale(1);
  transform:scale(1);
}
.navbar-nav li a:hover {
  opacity: 1;
}
.navbar-nav li.active a {
  opacity: 1;
}
.collapse:not(.show) {
  display:block;
}

/*==============================================
03. SOCIAL ICONS CSS
================================================*/
#social-icons {
  padding:0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right:0;
  z-index: 199;
}
.social-icons {
  margin:0;
  padding:0;
  list-style:none;
}
.social-icons li {
  display: block;
  margin: 1px 0px;
}
.social-icons li a {
  width:50px;
  height:50px;
  display:inline-block;
  line-height:50px;
  text-align:center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,1);
  font-size:18px;
}
.social-icons li a:hover {
  color:#1e1e1e;
  background-color: #fff;
}
/*==============================================
04. WELCOME BLOCK CSS
================================================*/
.welcome-box {
  font-size: 20px;
  line-height: 1.7;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 30px;
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.15) 0%, rgba(57, 206, 214, 0.15) 100%), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(64,150,238,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(57,206,214,0.05);stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad1)"/><circle cx="1100" cy="100" r="150" fill="rgba(64,150,238,0.08)"/><circle cx="100" cy="500" r="120" fill="rgba(57,206,214,0.08)"/></svg>');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.welcome-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(64, 150, 238, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.welcome-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(57, 206, 214, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
.welcome-first{
  font-size: 32px;
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.welcome-box p {
  max-width: 620px;
  width:100%;
  margin:0 auto 30px;
  color: #fff;
}
.welcome-title {
  font-weight: 700;
  font-size: 120px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}
.welcome-title span {
  font-size:36px;
  display:block;
  font-weight:300;
  line-height:1.2;
}
.welcome-box .btn {
  margin-top: 10px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #4096ee 0%, #39ced6 100%);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  transition: all 0.4s ease;
}
.welcome-box .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #4096ee;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(64, 150, 238, 0.4);
}
.welcome-first {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}
.welcome-box p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.8;
}
.welcome-title span {
  color: rgba(255, 255, 255, 0.8);
}
.next-section {
  display: none;
}
.animated-row {
  padding: 0;
  min-height: auto;
  display: block;
}
.next-section span {
  margin-top: 15px;
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.next-section i:hover {
  opacity: 1;
}

/*==============================================
05. ABOUT ME
================================================*/
.about-img {
  margin: 0 auto 40px;
  position:relative;
}
.about-img img {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px rgba(0,0,0,.3);
  box-shadow: 0 0 40px rgba(0,0,0,.3);
}
.about-contentbox {
  margin-top: 80px;
  text-align:left;
  line-height:1.8;
}
.about-contentbox span {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 300;
}
.about-contentbox h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
}
.facts-list {
  margin-top: 30px;
}
.facts-list .item {
  overflow: hidden;
  text-align:center;
  border-radius: 10px;
  width: 100%;
  display: inline-block;
  text-transform:capitalize;
  font-size:14px;
  padding: 30px 0px;
  background: rgba(0,0,0,0.25);
}
.counter-box span {
  font-size: 26px;
  font-weight: 700;
}
.counter-icon {
  font-size: 40px;
  margin-bottom: 10px;
  opacity: 1;
  display: inline-block;
}
.facts-list .item:hover {
  background:#fff;
  color:#1e1e1e;
}
.facts-list .owl-dots {
  margin-bottom: 30px;
}
.count-number, .counted {
  display:block;
  font-size:36px;
  font-weight:700;
  line-height:1;
  margin-bottom:10px;
}

/*==============================================
06. SERVICES BLOCK CSS
================================================*/
.title-block {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 30px;
}
.title-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4096ee, transparent);
}
.title-block span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4096ee;
  display: block;
  margin-bottom: 10px;
}
.title-block h2 {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.services-list .item {
  background-color: rgba(250,250,250,0.25);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-icon {
  display: block;
  margin: 0 auto 15px;
  font-size: 64px;
  line-height: 1;
}
.service-box {
  font-size:15px;
  padding:40px 20px;
  height:100%;
}
.services-list .item:hover {
  background-color: #fff;
  color: #1e1e1e;
}
.service-box h3 {
  font-size:22px;
  font-weight:700;
  text-transform: capitalize;
  margin-bottom: 10px;
  padding: 10px;
}
.service-box p:last-child {
  margin:0;
}
.owl-carousel .owl-dots .owl-dot {
  border-radius: 3px;
}
.owl-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 50px
}

.owl-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, .2)
}

.owl-carousel .owl-dots .owl-dot:focus {
    outline: none
}

.owl-carousel .owl-dots .owl-dot.active {
    background: #fff
}

/*==============================================
07. WORK BLOCK CSS
================================================*/
.gallery-section {
  text-align: center;
}
.portfolio-item img {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
  border-radius: 10px;
}
.portfolio-item .thumb-inner {
  position: absolute;
  z-index: 99;
  bottom: 0;
  text-align: left;
  padding: 20px;
  background-color: rgba(250,250,250,0.25);
  width: 100%;
  height: 60px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.portfolio-item .thumb-inner h4 {
  margin-bottom: 0;
  font-size: 16px;
  margin-top: 0px;
}
.portfolio-item .thumb-inner p {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin-bottom: 0px;
}
.portfolio-item:hover .thumb-inner p {
  position: relative;
  opacity: 1;
  visibility: visible;
  color: #4a4a4a;
}
.portfolio-item:hover .thumb-inner {
  border-radius: 10px;
  height: 100%;
  background-color: rgba(250,250,250,0.9)
}
.portfolio-item:hover .thumb-inner h4 {
   margin-top: 30%;
  color: #1e1e1e;
  margin-bottom: 20px;
}

/*==============================================
08. CONTACT BLOCK CSS
================================================*/
::-webkit-input-placeholder {
  color:#fff !important;
  opacity:1;
}
::-moz-placeholder {
  color:#fff !important;
  opacity:1;
}
:-ms-input-placeholder {
  color:#fff !important;
  opacity:1;
}
:-moz-placeholder {
  color:#fff !important;
  opacity:1;
}
.input-field {
  margin-bottom:15px;
}
.form-control {
  height: 50px;
  color:#fff;
  border: none;
  background:rgba(250,250,250,0.05);
  border: 1px solid rgba(250,250,250,0.5);
  border-radius: 10px;
  padding:4px 22px;
  font-size:14px;
  margin-bottom: 30px;
}
.form-control:focus {
  box-shadow:none;
  outline:none;
  background:rgba(0,0,0,0.05);
  border: 1px solid rgba(250,250,250,1);
  color:#fff;
}
.index .form-control.form-control-dark {
  background: rgba(250,250,250, 0.75);
  color: #fff;
}
.index .form-control.form-control-dark:focus {
  background: rgba(54, 40, 158, 0.85);
  color: #fff;
}
.index .form-control.form-control-dark::-webkit-input-placeholder {
  color: #fff !important;
}
.index .form-control.form-control-dark::-moz-placeholder {
  color:#fff !important;
}
.index .form-control.form-control-dark:-ms-input-placeholder {
  color:#fff !important;
}
.index .form-control.form-control-dark:-moz-placeholder {
  color:#fff !important;
}
.form-control.form-control-dark:focus {
  background: rgba(0, 0, 0, 0.2);
}
.form-control.form-control-dark {
  background: rgba(0, 0, 0, 0.1);
  color: #222;
  border: none;
}
.form-control.form-control-dark::-webkit-input-placeholder {
  color:#222 !important;
  opacity:0.7;
}
.form-control.form-control-dark::-moz-placeholder {
  color:#222 !important;
  opacity:0.7;
}
.form-control.form-control-dark:-ms-input-placeholder {
  color:#222 !important;
  opacity:0.7;
}
.form-control.form-control-dark:-moz-placeholder {
  color:#222 !important;
  opacity:0.7;
}
textarea.form-control {
  height:123px;
  padding-top:15px;
}
.contact-section .btn {
  width:100%;
}
.contact-box {
  text-align: left;
}
.contact-box h4 {
  font-size: 24px;
}
.contact-box h4:after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 12px 0;
}
.contact-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(250, 250, 250, 0.25);
  border-radius: 10px;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 15px;
}
.contact-cta-wrapper {
  margin-top: 40px;
  text-align: center;
}
.btn-contact {
  background: linear-gradient(135deg, #4096ee 0%, #39ced6 100%);
  color: #fff;
  border: none;
  padding: 0 45px;
  line-height: 55px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(64, 150, 238, 0.3);
  border-radius: 10px;
}
.btn-contact:hover {
  background: linear-gradient(135deg, #39ced6 0%, #4096ee 100%);
  box-shadow: 0 15px 40px rgba(64, 150, 238, 0.4);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

/*==============================================
09. TESTIMONOALS BLOCK CSS
================================================*/
.testimonials-section .item {
  background-color: rgba(250,250,250,0.25);
  padding: 40px;
  border-radius: 10px;
}
.testimonials-section .item img {
  width: 140px;
  height: 140px;
  margin: 0 auto;
}
.testimonials-section .item h4 {
  margin-top: 40px;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
}
.testimonials-section .item p {
  font-size: 17px;
  font-style: italic;
}

/*==============================================
11. SERVICE AREAS CSS
================================================*/
.service-area-list {
  text-align: left;
}
.service-area-text {
  font-size: 16px;
  margin-bottom: 30px;
  display: block;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px 15px;
  margin-top: 30px;
  width: 100%;
  padding: 20px 0;
}
.area-item {
  display: block;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  color: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.25);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  word-wrap: break-word;
  white-space: normal;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-item:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/*==============================================
12. FAQ SECTION CSS
================================================*/
.faq-section {
  text-align: left;
}
.faq-item {
  background: rgba(0,0,0,0.25);
  border-left: 4px solid #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  transition: all 0.4s ease;
}
.faq-item:hover {
  background: rgba(255,255,255,0.1);
  border-left-color: #fff;
}
.faq-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: none;
}
.faq-item p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/*==============================================
13. MAP SECTION CSS
================================================*/
.map-section {
  margin-top: 40px;
}
.map-section iframe {
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/*==============================================
BACKGROUND GRADIENTS
================================================*/
.bg-gradient-1 {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.08) 0%, rgba(57, 206, 214, 0.08) 100%) !important;
}
.bg-gradient-2 {
  background: linear-gradient(135deg, rgba(100, 200, 255, 0.05) 0%, rgba(150, 230, 240, 0.05) 100%) !important;
}

/*==============================================
NEW SERVICE AREAS STYLING
================================================*/
.service-areas-container {
  margin-top: 40px;
}
.areas-content {
  position: relative;
}
.areas-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}
.areas-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.area-card {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.15) 0%, rgba(57, 206, 214, 0.15) 100%);
  border: 2px solid rgba(64, 150, 238, 0.3);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.area-card:hover {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.25) 0%, rgba(57, 206, 214, 0.25) 100%);
  border-color: rgba(64, 150, 238, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(64, 150, 238, 0.2);
}
.area-card:hover::before {
  left: 100%;
}
.area-card i {
  font-size: 32px;
  color: #4096ee;
  margin-bottom: 15px;
  display: block;
}
.area-card h4 {
  font-size: 14px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.area-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.area-icon {
  font-size: 32px;
  color: #4096ee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  height: 50px;
  width: 100%;
  line-height: 1;
}
.all-cities-list {
  background: rgba(64, 150, 238, 0.1);
  border-left: 5px solid #4096ee;
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}
.all-cities-list h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
.all-cities-list p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}
.about-img-wrapper {
  position: relative;
  margin: 0 auto 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  max-width: 100%;
  height: auto;
}
.about-img-wrapper img {
  width: 100%;
  height: 350px;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}
.about-img-styled {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}
.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/*==============================================
16. DETAILED SERVICES SECTION CSS
================================================*/
.detailed-service-item {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 40px;
  border-left: 5px solid #fff;
  transition: all 0.4s ease;
}
.detailed-service-item:hover {
  background: rgba(0,0,0,0.4);
  border-left-color: #fff;
  transform: translateX(10px);
}
.detailed-service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}
.detailed-service-item p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0;
}
.service-detail-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}

/*==============================================
17. CTA SECTIONS CSS
================================================*/
.cta-section {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 50px 30px;
  text-align: center;
  margin: 60px 0;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.cta-section:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.02);
}
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.cta-section .btn {
  margin-top: 20px;
  font-size: 16px;
  padding: 0 40px;
  line-height: 50px;
}

/*==============================================
CTA BACKGROUND STYLING
================================================*/
.cta-bg {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.12) 0%, rgba(57, 206, 214, 0.08) 100%) !important;
  position: relative;
}
.cta-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(64, 150, 238, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(57, 206, 214, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-bg .section-inner {
  background: transparent;
  position: relative;
  z-index: 2;
}

/*==============================================
MODERN SECTION STYLING
================================================*/
.section {
  display: block;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}
.section-inner {
  padding: 80px 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
  position: relative;
  z-index: 1;
}
.section:nth-child(odd) .section-inner {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
}
.section:nth-child(even) .section-inner {
  background: linear-gradient(180deg, rgba(64, 150, 238, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
}
#footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  padding: 80px 0 30px;
  border-top: 2px solid rgba(64, 150, 238, 0.3);
  margin-top: 100px;
  position: relative;
  z-index: 10;
  width: 100%;
  clear: both;
  backdrop-filter: blur(10px);
}
#footer .container-fluid {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-wrapper {
  width: 100%;
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #4096ee 0%, #39ced6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
.footer-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.footer-subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #4096ee, transparent);
  margin-left: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: #4096ee;
  padding-left: 5px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact .footer-phone a,
.footer-contact .footer-hours a {
  color: #4096ee;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-contact .footer-phone a:hover,
.footer-contact .footer-hours a:hover {
  color: #39ced6;
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(64, 150, 238, 0.15);
  border: 2px solid rgba(64, 150, 238, 0.3);
  border-radius: 10px;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social-link:hover {
  background: rgba(64, 150, 238, 0.3);
  border-color: #4096ee;
  transform: translateY(-3px);
  font-size: 24px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0 0;
  text-align: center;
}
.footer-bottom-left {
  width: 100%;
}
.footer-bottom-left p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom-right {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #4096ee;
}
.footer-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
@media (max-width: 768px) {
  #footer {
    padding: 60px 0 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px 0;
  }
  .footer-bottom {
    gap: 15px;
    padding: 20px 0 0;
  }
  .footer-bottom-right {
    gap: 10px;
  }
}
.skill-item {
  border-bottom: 1px solid rgba(250,250,250,0.1);
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.last-skill {
  border-bottom: none;
}
.skills-row span {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  color: #1e1e1e;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  left: 0;
  top: -21px;
  position: absolute;
  z-index: 999;
}
.skills-row h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-align: right;
  margin-bottom: -10px;
}
.skill-bar {
  width: 70%;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(250,250,250,0.25);
  position: relative;
}
.filled-bar {
  position: absolute;
  z-index: 99;
  width: 64%;
  height: 6px;
  background-color: #fff;
  border-radius: 3px;
}
.filled-bar-2 {
  position: absolute;
  z-index: 99;
  width: 82%;
  height: 6px;
  background-color: #fff;
  border-radius: 3px;
}

/*==============================================
18. DETAILED SERVICES GRID CSS
================================================*/
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-detail-card {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.1) 0%, rgba(57, 206, 214, 0.08) 100%);
  border: 2px solid rgba(64, 150, 238, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
  justify-content: flex-start;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.05) 0%, rgba(57, 206, 214, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-detail-card:hover {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.15) 0%, rgba(57, 206, 214, 0.12) 100%);
  border-color: rgba(64, 150, 238, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(64, 150, 238, 0.15);
}

.service-detail-card:hover::before {
  opacity: 1;
}

.service-detail-icon {
  font-size: 50px;
  color: #4096ee;
  margin-bottom: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.15) 0%, rgba(57, 206, 214, 0.15) 100%);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-detail-card:hover .service-detail-icon {
  background: linear-gradient(135deg, rgba(64, 150, 238, 0.25) 0%, rgba(57, 206, 214, 0.25) 100%);
  transform: scale(1.1) rotate(5deg);
}

.service-detail-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.service-detail-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-detail-card {
    min-height: 300px;
    padding: 30px 20px;
  }
  
  .service-detail-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 40px;
  }
}
