/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*=== CSS VARIABLES ===*/
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --white: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;600;700;800&display=swap");

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: var(--gray-color);
  background: var(--light-color);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
}

h1, .h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3, .h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.navbar-toggle .icon-bar {
  background: rgb(46, 15, 181);
}

input[type=email], input[type=password], input[type=text], input[type=tel] {
  box-shadow: none;
  height: 45px;
  outline: none;
  font-size: 14px;
}
input[type=email]:focus, input[type=password]:focus, input[type=text]:focus, input[type=tel]:focus {
  box-shadow: none;
  border: 1px solid rgb(46, 15, 181);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid rgb(46, 15, 181);
}

.py-7 {
  padding: 7rem 0px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  font-family: "Poppins", sans-serif;
}
.btn.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}
.btn:focus {
  outline: 0px;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-main, .btn-small, .btn-transparent {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-main:hover, .btn-small:hover, .btn-transparent:hover {
  background: linear-gradient(135deg, var(--primary-dark), #3730a3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-solid-border {
  border: 2px solid rgb(188, 173, 255);
  background: transparent;
  color: #242424;
}
.btn-solid-border:hover {
  border: 2px solid rgb(171, 152, 255);
  background: rgb(46, 15, 181);
}

.btn-transparent {
  background: transparent;
  padding: 0;
  color: rgb(46, 15, 181);
}
.btn-transparent:hover {
  background: transparent;
  color: rgb(46, 15, 181);
}

.btn-large.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn-small {
  padding: 13px 25px 10px;
  font-size: 12px;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

.bg-gray {
  background: #f5f8f9;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.bg-primary-dark {
  background: var(--primary-dark);
}

.bg-primary-darker {
  background: #3730a3;
}

.bg-dark {
  background: var(--dark-color);
}

.bg-gradient {
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  background-repeat: repeat-x;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
}
.section-title .title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
}
.section-title p {
  color: var(--gray-color);
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
}

.subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.subtitle {
  color: rgb(46, 15, 181);
  font-size: 14px;
  letter-spacing: 1px;
}

.overly, .hero-img, .cta, .slider, .page-title {
  position: relative;
}
.overly:before, .hero-img:before, .cta:before, .slider:before, .page-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.overly-2, .latest-blog, .cta-block, .bg-counter {
  position: relative;
}
.overly-2:before, .latest-blog:before, .cta-block:before, .bg-counter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.text-color {
  color: var(--primary-color);
}
.h5.text-color {
  color: var(--primary-dark);
}
.text-black {
  color: var(--dark-color);
}

.text-color2 {
  color: var(--secondary-color);
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.no-spacing {
  letter-spacing: 0px;
}

/* Links */
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

a:focus {
  outline: none;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}

.page-title {
  padding: 100px 0;
}
.page-title .block h1 {
  color: #fff;
}
.page-title .block p {
  color: #fff;
}

.page-wrapper {
  padding: 70px 0;
}

#wrapper-work {
  overflow: hidden;
  padding-top: 100px;
}
#wrapper-work ul li {
  width: 50%;
  float: left;
  position: relative;
}
#wrapper-work ul li img {
  width: 100%;
  height: 100%;
}
#wrapper-work ul li .items-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding-left: 44px;
  padding-top: 140px;
}
#wrapper-work ul li .items-text h2 {
  padding-bottom: 28px;
  padding-top: 75px;
  position: relative;
}
#wrapper-work ul li .items-text h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75px;
  height: 3px;
  background: #fff;
}
#wrapper-work ul li .items-text p {
  padding-top: 30px;
  font-size: 16px;
  line-height: 27px;
  font-weight: 300;
  padding-right: 80px;
}

/*--
	features-work Start 
--*/
#features-work {
  padding-top: 50px;
  padding-bottom: 75px;
}
#features-work .block ul li {
  width: 19%;
  text-align: center;
  display: inline-block;
  padding: 40px 0px;
}

.header-top {
  background: rgb(84, 92, 134);
  color: #919194;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-top .header-top-socials {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0px;
}
.header-top .header-top-socials {
  margin-left: -8px;
}
.header-top .header-top-socials a {
  color: #919194;
  margin-right: 8px;
  font-size: 16px;
  padding: 0 8px;
}
.header-top .header-top-socials a:hover {
  color:  rgb(49, 9, 225);
}
.header-top .header-top-info {
  color: #919194;
  font-size: 16px;
}
.header-top .header-top-info a span {
  color: #fff;
}
.header-top .header-top-info a {
  margin-left: 35px;
  color: #919194;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--nav-shadow);
  padding: 0;
  transition: var(--transition-smooth);
}

.navigation .container {
  padding: 0 15px;
}

.navigation .navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-color);
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  color: var(--primary-color);
  transform: scale(1.02);
}

.navbar-brand .logo-img {
  max-width: 45px;
  height: auto;
  transition: var(--transition-smooth);
}

.navbar-brand .brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  padding: 8px 12px;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  background: transparent;
  transition: var(--transition-smooth);
}

.navbar-toggler:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.navbar-toggler:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.navbar-toggler-icon i {
  color: var(--primary-color);
  font-size: 20px;
}

.navbar-toggler:hover .navbar-toggler-icon i {
  color: var(--white);
}

.navbar-nav {
  align-items: center;
  gap: 8px;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .nav-icon {
  font-size: 14px;
  opacity: 0.8;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

.nav-cta {
  margin-left: 15px;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-dark), #3730a3);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-nav-cta i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-nav-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .navbar-nav {
    padding: 20px 0;
    gap: 8px;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    margin: 4px 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .btn-nav-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Scrolled Navigation */
.navigation.scrolled {
  padding: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navigation.scrolled .navbar {
  padding: 0.75rem 0;
}

.dropdown-menu {
  padding: 0px;
  border: 0;
  border-radius: 0px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    text-align: center;
    float: left !important;
    width: 100%;
    margin: 0;
  }
}
.dropdown-menu li:first-child {
  margin-top: 5px;
}
.dropdown-menu li:last-child {
  margin-bottom: 5px;
}

.dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-menu,
.dropright .dropdown-menu {
  margin: 0;
}

.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  border: 0;
  font-size: 10px;
  vertical-align: 1px;
}

.dropleft .dropdown-toggle::before {
  content: "\f053";
  margin-right: 5px;
}

.dropright .dropdown-toggle::after {
  content: "\f054";
  margin-left: 5px;
}

.dropdown-item {
  padding: 0.8rem 1.5rem 0.55rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .dropdown-item {
    padding: 0.6rem 1.5rem 0.35rem;
  }
}

.dropdown-submenu.active > .dropdown-toggle,
.dropdown-submenu:hover > .dropdown-item,
.dropdown-item.active,
.dropdown-item:hover {
  background:  rgb(46, 15, 181);
  color: #fff;
}

ul.dropdown-menu li {
  padding-left: 0px !important;
}

@media (min-width: 992px) {
  .dropdown-menu {
    transition: all 0.2s ease-in, visibility 0s linear 0.2s, transform 0.2s linear;
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    margin-top: 15px;
  }
  .dropdown-menu li:first-child {
    margin-top: 10px;
  }
  .dropdown-menu li:last-child {
    margin-bottom: 10px;
  }
  .dropleft .dropdown-menu,
.dropright .dropdown-menu {
    margin-top: -10px;
  }
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    transition: all 0.45s ease 0s;
    opacity: 1;
  }
}
.bg-1 {
  background: url("../images/bg/home-2.jpg") no-repeat 50% 50%;
   background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}

.bg-2 {
  background: url("../images/bg/home-5.jpg");
    background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}
.bg-3 {
  background: url("../images/contact.jpg");
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}
.bg-4 {
  background: url("../images/bg03.jpg");
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}
.bg-5 {
  background: url("../images/bg04.jpeg");
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}
.bg-6 {
  background: url("../images/c3.jpg");
  background-size: cover;
  background-position: 10% 0%;
  padding: 200px 0;
  position: relative;
}

.slider {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.75), rgba(79, 70, 229, 0.65)), url("../images/bg/home-1.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 220px 0 180px;
  position: relative;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .slider {
    padding: 160px 0 120px;
    margin-top: 60px;
  }
}
.slider .block h1 {
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .slider .block h1 {
    font-size: 2.5rem;
  }
}
.slider .block p,
.slider .block span {
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.slider .block span {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.intro-item i {
  font-size: 60px;
  line-height: 60px;
}

.color-one {
  color:  rgb(0, 150, 255);
}

.color-two {
  color: #00d747;
}

.color-three {
  color: #9262ff;
}

.color-four {
  color: #088ed3;
}

.bg-about {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 45%;
  min-height: 650px;
  background: url("../images/about/home-8.jpg") no-repeat;
  background-size: cover;
}

.about-content {
  padding: 20px 0px 0px 80px;
}
.about-content h4 {
  font-weight: 600;
}
.about-content h4:before {
  position: absolute;
  content: "\f576";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  position: absolute;
  top: 8px;
  left: -65px;
  font-weight: 700;
}

.counter-item .counter-stat {
  font-size: 50px;
}
.counter-item p {
  margin-bottom: 0px;
}

.bg-counter {
  background: url("../images/bg/counter.jpg") no-repeat;
  background-size: cover;
}

.img-fluid{
  height: 300px !important;
}

.team-img-hover .team-social li a.facebook {
  background: #6666cc;
}

.team-img-hover .team-social li a.twitter {
  background: #3399cc;
}

.team-img-hover .team-social li a.instagram {
  background: #cc66cc;
}

.team-img-hover .team-social li a.linkedin {
  background: #3399cc;
}

.team-img-hover {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.team-img-hover li a {
  display: inline-block;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-align: center;
  transform: translateY(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.team-img-hover:hover li a:hover {
  transform: translateY(4px);
}

.team-item:hover .team-img-hover {
  opacity: 1;
  transform: scale(1);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.service-item {
  position: relative;
  padding-left: 80px;
}
.service-item i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 50px;
  opacity: 0.4;
}

.cta {
  background: url("../images/bg/home-3.jpg") fixed 50% 50%;
  background-size: cover;
  padding: 120px 0px;
}

.cta-block {
  background: url("../images/bg/home-3.jpg") no-repeat;
  background-size: cover;
}

/*--- Clients Section Styles ---*/
.clients {
    padding: 80px 0;
    background: #ffffff;
}

.client-logo-item {
    padding: 15px;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-width: 100%;
    max-height: 150px;
    width: auto !important;
    height: auto !important;
}



.testimonial-item {
  padding: 50px 30px;
}
.testimonial-item i {
  font-size: 40px;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
}
.testimonial-item .testimonial-text {
  font-size: 20px;
  line-height: 38px;
  color: #242424;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial-item .testimonial-item-content {
  padding-left: 65px;
}

.slick-slide:focus, .slick-slide a {
  outline: none;
}

.hero-img {
  background: url("../images/bg/home-5.jpg");
  position: absolute;
  content: "";
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
}

.h70 {
  height: 55%;
}

.lh-45 {
  line-height: 45px;
}

.pricing-header h1 {
  font-size: 70px;
  font-weight: 300;
}

.pricing .btn-solid-border {
  border-color: #dedede;
}
.pricing .btn-solid-border:Hover {
  border-color:  rgb(46, 15, 181);
}
.popup-gallery{
  height: 10px !important;
}

.portflio-item .portfolio-item-content {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transition: all 0.35s ease;
}
.portflio-item:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.35s ease;
  overflow: hidden;
}
.portflio-item:hover:before {
  opacity: 1;
}
.portflio-item:hover .portfolio-item-content {
  opacity: 1;
  bottom: 20px;
  right: 30px;
}
.portflio-item .overlay-item {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color:  rgb(46, 15, 181);
  opacity: 0;
  transition: all 0.35s ease;
}
.portflio-item:hover .overlay-item {
  opacity: 1;
}

.contact-form-wrap .form-group {
  padding-bottom: 15px;
  margin: 0px;
}
.contact-form-wrap .form-group .form-control {
  background: #f5f8f9;
  height: 48px;
  border: 1px solid #EEF2F6;
  box-shadow: none;
  width: 100%;
}
.contact-form-wrap .form-group-2 {
  margin-bottom: 13px;
}
.contact-form-wrap .form-group-2 textarea {
  background: #f5f8f9;
  height: 135px;
  border: 1px solid #EEF2F6;
  box-shadow: none;
  width: 100%;
}

.address-block li {
  margin-bottom: 10px;
}
.address-block li i {
  font-size: 20px;
  width: 20px;
}

.social-icons li {
  margin: 0 6px;
}
.social-icons i {
  margin-right: 15px;
  font-size: 25px;
}

.google-map {
  position: relative;
}

.google-map #map {
  width: 100%;
  height: 450px;
}


/*=================================================================
  Latest Posts
==================================================================*/
.blog-item-content h3 {
  line-height: 36px;
}
.blog-item-content h3 a {
  transition: all 0.4s ease 0s;
}
.blog-item-content h3 a:hover {
  color:  rgb(46, 15, 181) !important;
}

.lh-36 {
  line-height: 36px;
}

.tags a {
  background: #f5f8f9;
  display: inline-block;
  padding: 8px 23px;
  border-radius: 38px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  font-size: 14px;
  text-transform: capitalize;
}

.pagination .nav-links a,
.pagination .nav-links span.current {
  font-size: 20px;
  font-weight: 500;
  color: #c9c9c9;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pagination .nav-links span.current,
.pagination .nav-links a.next,
.pagination .nav-links a.prev {
  color: #242424;
}

h3.quote {
  font-size: 24px;
  line-height: 40px;
  font-weight: normal;
  padding: 0px 25px 0px 85px;
  margin: 65px 0 65px 0 !important;
  position: relative;
}
@media (max-width: 768px) {
  h3.quote {
    padding: 0;
    padding-left: 20px;
  }
}

h3.quote::before {
  content: "";
  width: 55px;
  height: 2px;
  background:  rgb(46, 15, 181);
  position: absolute;
  top: 25px;
  left: 0;
}
@media (max-width: 768px) {
  h3.quote::before {
    top: 5px;
    width: 2px;
    height: 35px;
  }
}

.nav-posts-title {
  line-height: 25px;
  font-size: 18px;
}

.latest-blog {
  position: relative;
  padding-bottom: 150px;
}

.mt-70 {
  margin-top: -70px;
}

.border-1 {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/*=================================================================
  Single Blog Page
==================================================================*/
.post.post-single {
  border: none;
}
.post.post-single .post-thumb {
  margin-top: 30px;
}

.post-sub-heading {
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}

.post-social-share {
  margin-bottom: 50px;
}

.post-comments {
  margin: 30px 0;
}
.post-comments .media {
  margin-top: 20px;
}
.post-comments .media > .pull-left {
  padding-right: 20px;
}
.post-comments .comment-author {
  margin-top: 0;
  margin-bottom: 0px;
  font-weight: 500;
}
.post-comments .comment-author a {
  color:  rgb(46, 15, 181);
  font-size: 14px;
  text-transform: uppercase;
}
.post-comments time {
  margin: 0 0 5px;
  display: inline-block;
  color: #808080;
  font-size: 12px;
}
.post-comments .comment-button {
  color:  rgb(46, 15, 181);
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
}
.post-comments .comment-button i {
  margin-right: 5px;
  display: inline-block;
}
.post-comments .comment-button:hover {
  color:  rgb(46, 15, 181);
}

.post-excerpt {
  margin-bottom: 60px;
}
.post-excerpt h3 a {
  color: #000;
}
.post-excerpt p {
  margin: 0 0 30px;
}
.post-excerpt blockquote.quote-post {
  margin: 20px 0;
}
.post-excerpt blockquote.quote-post p {
  line-height: 30px;
  font-size: 20px;
  color:  rgb(46, 15, 181);
}

.single-blog {
  background-color: #fff;
  margin-bottom: 50px;
  padding: 20px;
}

.blog-subtitle {
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.next-prev {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  margin: 20px 0;
  padding: 25px 0;
}
.next-prev a {
  color: #000;
}
.next-prev a:hover {
  color:  rgb(46, 15, 181);
}
.next-prev .prev-post i {
  margin-right: 10px;
}
.next-prev .next-post i {
  margin-left: 10px;
}

.social-profile ul li {
  margin: 0 10px 0 0;
  display: inline-block;
}
.social-profile ul li a {
  color: #4e595f;
  display: block;
  font-size: 16px;
}
.social-profile ul li a i:hover {
  color:  rgb(46, 15, 181);
}

.comments-section {
  margin-top: 35px;
}

.author-about {
  margin-top: 40px;
}

.post-author {
  margin-right: 20px;
}

.post-author > img {
  border: 1px solid #dedede;
  max-width: 120px;
  padding: 5px;
  width: 100%;
}

.comment-list ul {
  margin-top: 20px;
}
.comment-list ul li {
  margin-bottom: 20px;
}

.comment-wrap {
  border: 1px solid #dedede;
  border-radius: 1px;
  margin-left: 20px;
  padding: 10px;
  position: relative;
}
.comment-wrap .author-avatar {
  margin-right: 10px;
}
.comment-wrap .media .media-heading {
  font-size: 14px;
  margin-bottom: 8px;
}
.comment-wrap .media .media-heading a {
  color:  rgb(46, 15, 181);
  font-size: 13px;
}
.comment-wrap .media .comment-meta {
  font-size: 12px;
  color: #888;
}
.comment-wrap .media p {
  margin-top: 15px;
}

.comment-reply-form {
  margin-top: 80px;
}
.comment-reply-form input, .comment-reply-form textarea {
  height: 35px;
  border-radius: 0;
  box-shadow: none;
}
.comment-reply-form input:focus, .comment-reply-form textarea:focus {
  box-shadow: none;
  border: 1px solid  rgb(46, 15, 181);
}
.comment-reply-form textarea, .comment-reply-form .btn-main, .comment-reply-form .btn-transparent, .comment-reply-form .btn-small {
  height: auto;
}

.widget {
  margin-bottom: 30px;
  padding-bottom: 35px;
}
.widget .widget-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
}
.widget.widget-latest-post .media .media-object {
  width: 100px;
  height: auto;
}
.widget.widget-latest-post .media .media-heading a {
  color: #242424;
  font-size: 16px;
}
.widget.widget-latest-post .media p {
  font-size: 12px;
  color: #808080;
}
.widget.widget-category ul li {
  margin-bottom: 10px;
}
.widget.widget-category ul li a {
  color: #837f7e;
  transition: all 0.3s ease;
}
.widget.widget-category ul li a:before {
  padding-right: 10px;
}
.widget.widget-category ul li a:hover {
  color: rgb(46, 15, 181);
  padding-left: 5px;
}
.widget.widget-tag ul li {
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px;
}
.widget.widget-tag ul li a {
  color: #837f7e;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #dedede;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.widget.widget-tag ul li a:hover {
  color: #fff;
  background:  rgb(46, 15, 181);
  border: 1px solid  rgb(46, 15, 181);
}

.footer {
  padding-bottom: 10px;
}
.footer .copyright a {
  font-weight: 600;
}

.lh-35 {
  line-height: 35px;
}

.logo {
  color: #242424;
  font-weight: 600;
  letter-spacing: 1px;
}
.logo span {
  color:  rgb(46, 15, 181);
}

.sub-form {
  position: relative;
}
.sub-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f5f8f9;
}

.footer-btm {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-socials li a {
  margin-left: 15px;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  height: 40px;
  width: 40px;
  background:  rgb(46, 15, 181);
  border-radius: 50%;
  text-align: center;
  line-height: 43px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
  }
}
.scroll-to-top:hover {
  background-color: #333;
}

/*=== MEDIA QUERY ===*/
/*=== MEDIA QUERY ===*/
@media (max-width: 992px) {
  .slider .block h1 {
    font-size: 56px;
    line-height: 70px;
  }
  .bg-about {
    display: none;
  }
  section.about {
    border: 1px solid #dee2e6;
    border-left: 0;
    border-right: 0;
  }
  .footer-socials {
    margin-top: 20px;
  }
  .footer-socials li a {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .navbar-toggler {
    color: #fff;
  }
  .bg-about {
    display: none;
  }
  .slider .block h1 {
    font-size: 48px;
    line-height: 62px;
  }
  .blog-item-meta span {
    margin: 6px 0px;
  }
  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }
}
@media (max-width: 480px) {
  .header-top .header-top-info a {
    margin-left: 10px;
    margin-right: 10px;
  }
  .navbar-toggler {
    color: #fff;
  }
  .slider .block h1 {
    font-size: 38px;
    line-height: 50px;
  }
  .content-title {
    font-size: 28px;
    line-height: 46px;
  }
  .p-5 {
    padding: 2rem !important;
  }
  h2, .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }
  .testimonial-item .testimonial-item-content {
    padding-left: 0px;
    padding-top: 30px;
  }
  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }
}
@media (max-width: 400px) {
  .header-top .header-top-info a {
    display: block;
  }
  .navbar-toggler {
    color: #fff;
  }
  .content-title {
    font-size: 28px;
    line-height: 46px;
  }
  .bg-about {
    display: none;
  }
  .p-5 {
    padding: 2rem !important;
  }
  h2, .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }
  .testimonial-item .testimonial-item-content {
    padding-left: 0px;
    padding-top: 30px;
  }
  .text-lg {
    font-size: 3rem;
  }
  .widget {
    margin-bottom: 30px;
    padding-bottom: 0px;
  }
}
/*# sourceMappingURL=style.css.map */

/* Modern Intro Cards */
.intro-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(99, 102, 241, 0.1);
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.intro-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
	border-color: var(--primary-color);
}

.intro-card:hover::before {
	transform: scaleX(1);
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--primary-color);
	transition: all 0.4s ease;
	position: relative;
}

.icon-wrapper::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.intro-card:hover .icon-wrapper {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: var(--white);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.intro-card:hover .icon-wrapper::after {
	opacity: 1;
}

.intro-card h4 {
	color: var(--dark-color);
	font-weight: 700;
	font-size: 1.35rem;
	margin-bottom: 16px;
	transition: color 0.3s ease;
}

.intro-card:hover h4 {
	color: var(--primary-color);
}

.intro-card p {
	color: var(--gray-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 0;
}
/* Service Card Base */
.service-card {
    background: #ffffff;
    padding: 38px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Icon Wrapper */
.icon-box {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #4a6cf7;
    transition: 0.35s ease;
}

/* Icon Hover Color */
.service-card:hover .icon-box {
    color: #fff;
    box-shadow: 0 10px 25px rgba(74,108,247,0.4);
}

/* Text Improvements */
.service-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Add spacing between rows */
.row.g-4 {
    row-gap: 35px !important;
}
.about-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
  margin-bottom: 30px;
}

.about-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.about-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-card h3 span {
  color: #5283ff;
  font-weight: 800;
  margin-right: 10px;
}

.about-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.counter-icon {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 15px;
  opacity: 0.95;
  transition: 0.3s ease;
}

.counter-item:hover .counter-icon {
  transform: translateY(-5px);
  opacity: 1;
}
.intro-card {
    background: #ffffff;
    padding: 25px 22px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}

.intro-icon {
    font-size: 38px;
    color: #726aff; /* modern primary color */
    margin-bottom: 10px;
    transition: 0.3s;
}

.intro-card:hover .intro-icon {
    transform: scale(1.1);
    color: #4338ca;
}

.intro-card h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.intro-card p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
.list-unstyled li {
    font-size: 15px;
    line-height: 1.8;
}

.list-unstyled li i {
    color: #4f46e5; /* modern accent color */
    margin-right: 10px;
}
/* Use a clean, professional font for the list */
.pricing-list {
    font-family: 'Inter', 'Roboto', 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    text-align: start; /* left-aligned for professional look */
    padding-left: 0;
    color: #1f2937; /* dark text for readability */
}

.pricing-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px; /* spacing between items */
}

.pricing-list li i {
    font-size: 16px;
    color: #4f46e5; /* modern primary color for icons */
    margin-right: 10px;
    min-width: 20px; /* keeps icons aligned even if text wraps */
}
/* Card styling */
.pricing-card {
  border-radius: 1rem; /* rounded corners */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover */
  background-color: #ffffff;
  padding: 0;
}

/* Hover effect */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}
.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.service-card i {
  color: #007bff; /* Primary color for icons */
}

.service-card h4 {
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}
.contact-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.contact-card h2, .contact-card h3 {
  font-weight: 600;
  color: #1f2937;
}

.contact-card i {
  font-size: 1.2rem;
}

.address-block li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.social-icons i {
  font-size: 1.2rem;
  transition: transform 0.3s;
  height: 20px;
}

.social-icons i:hover {
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .section {
    padding: 70px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .navigation {
    padding: 8px 0;
  }

  #navbar {
    border-radius: 20px;
    padding: 10px 14px;
    box-shadow: 0 10px 28px rgba(0, 56, 108, 0.12);
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
  }

  .slider {
    padding: 140px 0 110px;
    text-align: center;
  }

  .slider h1 {
    font-size: 2.1rem;
    line-height: 1.3;
  }

  .slider .btn {
    margin-top: 10px;
  }

  .intro-card,
  .service-card,
  .pricing-card,
  .contact-card,
  .about-card {
    margin-bottom: 25px;
  }

  .pricing-header h1 {
    font-size: 2.5rem;
  }

  .pricing .col-md-4,
  .pricing [class*="col-lg"],
  .pricing [class*="col-md"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pricing .card.pricing-card {
    margin-bottom: 25px;
  }

  .cta-block {
    text-align: center;
  }

  .cta-block .btn {
    margin-top: 15px;
  }

  .footer .widget,
  .footer-btm {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .row.g-4 > [class*="col-"],
  .row.justify-content-center > [class*="col-"],
  .row > [class*="col-"].stack-mobile {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section {
    padding: 55px 0;
  }

  .navbar-brand img {
    max-width: 150px;
  }

  .navbar-nav .nav-link {
    padding: 0.45rem 0.75rem;
  }

  .slider {
    padding: 120px 0 90px;
  }

  .slider h1 {
    font-size: 1.8rem;
  }

  .section-title .content-title,
  .section-title h2 {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .intro-card,
  .service-card,
  .pricing-card,
  .contact-card,
  .about-card {
    padding: 22px 18px;
  }

  .pricing-header h1 {
    font-size: 2.2rem;
  }

  .pricing-list li {
    font-size: 14px;
  }

  .contact-card h2,
  .contact-card h3 {
    font-size: 1.5rem;
  }

  .testimonial-item {
    padding: 25px;
  }

  .footer-btm .footer-socials {
    margin-top: 10px;
  }
}

/* ==========================================
   ADDITIONAL MODERN UI ENHANCEMENTS
   ========================================== */

/* Smooth scroll offset for fixed navbar */
html {
  scroll-padding-top: 100px;
}

/* Content section improvements */
.content-title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--dark-color);
  letter-spacing: -0.01em;
}

/* Enhanced buttons */
.btn-round {
  border-radius: 12px;
}

.btn-round-full {
  border-radius: 50px;
  padding: 14px 32px;
}

/* Modern shadow utilities */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08) !important;
}

.shadow {
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12) !important;
}

.shadow-lg {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15) !important;
}

/* Improved section backgrounds */
.bg-light {
  background: #f8fafc !important;
}

/* Service/Feature cards modern styling */
.service-item,
.feature-item {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 102, 241, 0.1);
  height: 100%;
}

.service-item:hover,
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary-color);
}

/* Icon styling in cards */
.service-item i,
.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition-smooth);
}

.service-item:hover i,
.feature-item:hover i {
  transform: scale(1.1);
  color: var(--primary-dark);
}

/* Counter section improvements */
.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.counter-item p {
  color: var(--gray-color);
  font-size: 1rem;
  font-weight: 500;
}

/* Improved form inputs */
input.form-control,
textarea.form-control,
select.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 15px;
  transition: var(--transition-smooth);
  background: var(--white);
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: var(--white);
}

/* Modern testimonial styling */
.testimonial-item {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.1);
  margin: 10px;
}

/* Footer improvements */
.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
}

.footer h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--primary-light);
}

/* Scroll to top button */
#scroll-to-top {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  transition: var(--transition-smooth);
}

#scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* Page title improvements */
.page-title {
  padding: 180px 0 120px;
  margin-top: 70px;
}

.page-title h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* Responsive typography */
@media (max-width: 1200px) {
  h1, .h1 {
    font-size: 3rem;
  }
  
  h2, .h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2.25rem;
  }
  
  h2, .h2 {
    font-size: 1.875rem;
  }
  
  .content-title {
    font-size: 1.875rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-sm {
    padding: 60px 0;
  }
}


