/*--------------------------------------------------------------
# Index Page Specific Styles
--------------------------------------------------------------*/

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.hero-title {
  color: #37517e;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #666;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-get-started,
.btn-learn-more {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-get-started {
  background: #4aadbd;
  color: #fff;
  border: 2px solid #4aadbd;
}

.btn-get-started:hover {
  background: transparent;
  color: #4aadbd;
}

.btn-learn-more {
  background: transparent;
  color: #37517e;
  border: 2px solid #37517e;
}

.btn-learn-more:hover {
  background: #37517e;
  color: #fff;
}

/* About Section */
#about .section-title h2 {
  color: #37517e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#about .section-title p {
  color: #666;
  font-size: 16px;
}

.about-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 4px 12px rgba(74, 173, 189, 0.1);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4aadbd, #47b2e4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(74, 173, 189, 0.3);
}

.about-card h4 {
  color: #37517e;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Services Section */
#services .section-title h2 {
  color: #37517e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#services .section-title p {
  color: #666;
  font-size: 16px;
}

.icon-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.icon-box:hover {
  box-shadow: 0 4px 16px rgba(74, 173, 189, 0.15);
  transform: translateY(-5px);
}

.icon-box .icon {
  color: #4aadbd;
  font-size: 48px;
  margin-bottom: 20px;
}

.icon-box h4 {
  color: #37517e;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.icon-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Why Us / Expertise Section */
#why-us .section-title h2 {
  color: #37517e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#why-us .section-title p {
  color: #666;
  font-size: 16px;
}

.expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expertise-column h3 {
  color: #37517e;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.expertise-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expertise-item-simple {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.expertise-item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-item-icon img {
  max-width: 100%;
  height: auto;
}

.expertise-item-simple h4 {
  color: #37517e;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.expertise-item-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Clients Section */
#clients .section-title h2 {
  color: #37517e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#clients .section-title p {
  color: #666;
  font-size: 16px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.client-item {
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-item:hover .client-logo {
  filter: grayscale(0) brightness(1);
  transform: scale(1.12);
}

/* Contact Section */
#contact .section-title h2 {
  color: #37517e;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#contact .section-title p {
  color: #666;
  font-size: 16px;
}

.info {
  padding: 20px;
}

.info div {
  margin-bottom: 30px;
}

.info i {
  color: #4aadbd;
  font-size: 28px;
  margin-bottom: 15px;
}

.info h4 {
  color: #37517e;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

/* Contact Form */
.php-email-form .form-group {
  margin-bottom: 25px;
}

.php-email-form label {
  color: #37517e;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 15px;
}

.php-email-form .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.php-email-form .form-control:focus {
  border-color: #4aadbd;
  box-shadow: 0 0 0 3px rgba(74, 173, 189, 0.1);
}

.php-email-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.php-email-form button {
  background: #4aadbd;
  color: #fff;
  border: 2px solid #4aadbd;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.php-email-form button:hover {
  background: transparent;
  color: #4aadbd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .expertise-cards-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    flex-direction: column;
  }
}

/*======================================================
# Complete Index-Page Specific Styles from style.css
======================================================*/

/* Hero Section */
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #37517e 0%, #47b2e4 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

#hero .container {
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.95);
  margin: 20px 0 30px 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#hero .hero-img-container {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

#hero .hero-image {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: hover-bounce 3s ease-in-out infinite;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #fff;
  background: #4aadbd;
  box-shadow: 0 4px 15px rgba(74, 173, 189, 0.3);
  height: 48px;
  box-sizing: border-box;
}

#hero .btn-get-started:hover {
  background: #3a9dad;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 173, 189, 0.4);
}

#hero .btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  height: 48px;
  box-sizing: border-box;
}

#hero .btn-learn-more:hover {
  background: #fff;
  color: #47b2e4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes hover-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Clients Section */
.clients {
  padding: 60px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

/* About Us / Content Styles */
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/* Why Us / Expertise Section */
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #e6f4fc;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .btn-portfolio {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 16px 60px;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 30px 0 0 0;
  color: #fff;
  background: #4aadbd;
  box-shadow: 0 4px 15px rgba(74, 173, 189, 0.3);
}

.why-us .btn-portfolio:hover {
  background: #3a9dad;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 173, 189, 0.4);
}

/* Services Section */
.services .row {
  padding-left: 150px;
}

.services .column {
  width: 30%;
}

.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 100%;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services .icon-box h4 .icon {
  display: inline-block;
  margin-bottom: 0;
  flex-shrink: 0;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
  flex: 1;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(74, 173, 189, 0.9), rgba(74, 173, 189, 0.9)), url("../img/eye3.webp") fixed center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta h5 {
  color: #fff;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

/* Responsive Hero */
@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  #hero h1 {
    font-size: 36px;
  }

  #hero h2 {
    font-size: 16px;
  }

  .services .row {
    padding-left: 0;
  }

  .services .column {
    width: 100% !important;
    margin-top: 0 !important;
  }

  .services .icon-box {
    padding: 40px 20px;
  }

  .services .icon-box h4 {
    font-size: 20px;
  }

  .services .icon-box .icon i {
    font-size: 32px;
  }

  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) and (orientation: landscape) {
  #hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  #hero .container {
    padding-top: 20px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
  }

  #hero h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  #hero .hero-img img {
    width: 40%;
    max-width: 300px;
  }

  .services {
    padding: 40px 0;
  }

  .services .icon-box {
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
  }

  .services .icon-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .services .icon-box p {
    font-size: 12px;
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  .clients img {
    max-width: 40%;
  }

  .services .row {
    padding-left: 0;
  }

  .services .column {
    width: 100% !important;
  }

  .services .icon-box {
    padding: 40px 20px;
  }

  .services .icon-box h4 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }

  .cta {
    background-attachment: scroll;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  .why-us .img {
    min-height: 200px;
  }

  .why-us .content {
    padding: 30px 15px 0 15px;
  }

  .why-us .accordion-list {
    padding: 0 15px 30px 15px;
  }

  .services .icon-box {
    padding: 30px 15px;
  }

  .services .icon-box h4 {
    font-size: 18px;
  }

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

  .services .icon-box p {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
  }

  .cta h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Enhanced About Section
--------------------------------------------------------------*/
.about-enhanced {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.about-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 173, 189, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4aadbd, #47b2e4);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(74, 173, 189, 0.15);
  border-color: #4aadbd;
}

.about-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4aadbd, #47b2e4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(74, 173, 189, 0.3);
}

.about-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #37517e;
  margin-bottom: 15px;
}

.about-card p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}

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

/*--------------------------------------------------------------
# Enhanced Services Section
--------------------------------------------------------------*/
.services-enhanced {
  padding: 80px 0;
}

.services-enhanced .row {
  padding: 0;
}

.icon-box-enhanced {
  background: #fff;
  border-radius: 12px;
  padding: 45px 30px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 173, 189, 0.1);
  position: relative;
  overflow: hidden;
}

.icon-box-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4aadbd, #47b2e4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.icon-box-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(74, 173, 189, 0.2);
}

.icon-enhanced {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(74, 173, 189, 0.2), rgba(71, 178, 228, 0.1));
  border-radius: 12px;
  transition: all 0.4s ease;
}

.icon-box-enhanced:hover .icon-enhanced {
  background: linear-gradient(135deg, #4aadbd, #47b2e4);
  transform: scale(1.15) rotate(10deg);
}

.icon-box-enhanced:hover .icon-enhanced i {
  color: #fff;
}

.icon-enhanced i {
  color: #47b2e4;
  font-size: 32px;
  transition: color 0.4s ease;
}

.icon-box-enhanced h4 {
  font-size: 20px;
  font-weight: 700;
  color: #37517e;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.icon-box-enhanced:hover h4 {
  color: #4aadbd;
}

.icon-box-enhanced p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Enhanced Expertise / Why Us Section
--------------------------------------------------------------*/
.why-us-enhanced {
  padding: 80px 0;
  position: relative;
}

.about-enhanced .section-title h2,
.services-enhanced .section-title h2,
.why-us-enhanced .section-title h2 {
  color: #37517e;
}

.expertise-column {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(74, 173, 189, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  padding: 30px;
}

.expertise-column:hover {
  box-shadow: 0 12px 36px rgba(74, 173, 189, 0.15);
  transform: translateY(-6px);
  border-color: #4aadbd;
}

.expertise-item-simple {
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 173, 189, 0.1);
  transition: all 0.3s ease;
}

.expertise-item-simple:last-child {
  border-bottom: none;
}

.expertise-item-simple:hover {
  padding-left: 8px;
}

.expertise-item-icon {
  background: linear-gradient(135deg, rgba(74, 173, 189, 0.2), rgba(71, 178, 228, 0.1));
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(74, 173, 189, 0.1);
  transition: all 0.3s ease;
}

.expertise-item-simple:hover .expertise-item-icon {
  background: linear-gradient(135deg, #4aadbd, #47b2e4);
  box-shadow: 0 6px 16px rgba(74, 173, 189, 0.3);
}

.expertise-item-desc {
  font-size: 12px;
  color: #999;
  margin: 4px 0 0 0;
  font-weight: 400;
}

.btn-portfolio-enhanced {
  background: linear-gradient(135deg, #4aadbd, #47b2e4);
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(74, 173, 189, 0.3);
  border: 2px solid transparent;
  display: inline-block;
  text-decoration: none;
  margin-top: 30px;
}

.btn-portfolio-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(74, 173, 189, 0.4);
  background: linear-gradient(135deg, #47b2e4, #4aadbd);
}

@media (max-width: 768px) {
  .about-enhanced {
    padding: 60px 0;
  }

  .about-card {
    padding: 30px;
    margin-bottom: 20px;
  }

  .services-enhanced {
    padding: 60px 0;
  }

  .icon-box-enhanced {
    margin-bottom: 20px;
  }

  .why-us-enhanced {
    padding: 60px 0;
  }

  .expertise-column {
    padding: 25px;
  }

  .expertise-column h3 {
    font-size: 18px;
  }

  .expertise-item-icon {
    width: 40px;
    height: 40px;
  }

  .expertise-item-icon img {
    width: 24px;
    height: 24px;
  }

  .expertise-item-simple h4 {
    font-size: 13px;
  }
}

