color@charset "UTF-8";

/*--------------------------------------------------------------
# MK
# For index01
--------------------------------------------------------------*/

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #175cdd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #175cdd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: rgba(83,83,83,1.0);
  background-color: rgba(255,255,255,1.0) !important;
  font-size: 16px;
  font-family: "Open Sans","Helvetica Neue Regular","Arial","Hiragino Kaku Gothic ProN","Meiryo","Noto sans JP",sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}
a {
  color: rgba(196,77,151,1.0); !important;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(196,77,151,0.5); !important;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgba(83,83,83,1.0);
  font-family: "Open Sans","Helvetica Neue Regular","Arial","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
}

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

.header {
  background-color: rgba(255,255,255,0.3); /* Menu Back Ground Color */
  color: rgba(83,83,83,1.0);
  transition: all 0.5s;
  z-index: 997;
  /*background-color: rgba(220,220,220,1);*/
  /*box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);*/
}

/* TopBar Area */
.header .topbar {
  background-color: rgba(83,83,83,0.5);
  height: 40px;
  padding: 0;
  font-size: 14px;
  color: rgba(255,255,255,1.0) ;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: rgba(255,255,255,1.0);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: rgba(255,255,255,1.0);
}

.header .topbar .social-links a {
  color: rgba(83,83,83,1.0) !important;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: rgba(83,83,83,0.5) !important;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgba(255,255,255,1.0);
}


/*-----------------------
logo  Area
-------------------------*/

.header .branding {
  min-height:60px;
  padding: 10px 0;
}

.header .logo img {
  max-height: 36px
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    color: rgba(83,83,83,1.0) !important;
    font-size: 16px;
    padding: 0 2px;
    font-family: inherit;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
    .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: rgba(83,83,83,1.0);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  /* For UndreLine */
    .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: rgba(83,83,83,0.8) !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: rgba(255,255,255,0.8);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: rgba(83,83,83,1.0) !important;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: rgba(83,83,83,0.5) !important;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: rgba(83,83,83,0.8);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(255,255,255,1.0);
    border: 1px solid rgba(83,83,83,0.5);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: rgba(83,83,83,0.8) !important;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: rgba(196,77,151,0.8) !important;
  }

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs FOR LEVE2
--------------------------------------------------------------*/

.page-title {
  color: rgba(83,83,83,1.0);
  background-color: rgba(255,255,255,1.0);
  position: relative;
  padding-top: 100px;
}

.page-title .heading h1 {
  font-size: 32px;
  font-weight: 500;
}

/* For breadcrumbs */
.page-title nav {
  background-color: rgba(255,255,255,1.0);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(196,77,151,1.0);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  /*color: rgba(11,227,10,1);*/
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 300px;
  height: 1px;
  background: rgba(83,83,83,1);  /*細いライン*/
  left: 0;
  right: 0;
  bottom: 1px;
  margin:auto ;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: rgba(196,77,151,1.0);  /*太いライン*/
  left: 0;
  right: 0;
  bottom: 0;
  margin:auto ;
}

.section-title p {
  margin-bottom: 0;
  /*font-size: 32px;*/
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #175cdd  transparent 95%);
  overflow: hidden;
}

.hero .hero-content h1 {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.5rem 0;
  color: var(--heading-color);
}
*/
/*
.hero .hero-content h1 .highlight {
  color: rgba(115,184,228,0.8);
  position: relative;
}

.hero .hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(115,184,228,0.8) !important;
  border-radius: 2px;
}
*/
/*
.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(83,83,83,1) !important;
  margin-bottom: 2rem;
  max-width: 500px;
}
*/
/*--------------------------------------------------------------
# Hero Section For Slider
--------------------------------------------------------------*/
/*.hero .container {
  background:  rgba(255,255,255,0.3);
  position: relative;*/
  /*text-align: center;*/
  /*padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  margin-left:100px; */ /* For LeftSide */
  /*border-top: 4px solid  rgba(115,184,228,0.8);
  z-index: 3;
}


.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: rgba(115,184,228,0.8) !important;
}

.hero p {
  color:rgba(83,83,83,1) !important;
  font-size:16px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  margin-left:180px; *//*For Btton Hover Over 180*/
/*  border-radius: 4px;
  color: rgba(83,83,83,1.0) !important;
  border: 2px solid rgba(115,184,228,0.8);
}

.hero .btn-get-started:hover {
  background: rgba(115,184,228,0.8);
  color: rgba(255,255,255,1.0) !important;
}*/

/*--------------------------------------------------------------
# Hero Section For Non Moving
--------------------------------------------------------------*/

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  /*align-items: center;
  justify-content: center;*/
}

.hero .container {
  position: absolute;
  top:500px;
  right:200px;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(196,77,151,1.0);
  font-family: "EB Garamond", serif;
}

@media (max-width: 1399px) {
.hero .container {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 3;
  }
  
.hero h2{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(196,77,151,1.0);
  writing-mode: horizontal-tb;
  font-family: "EB Garamond", serif;
  text-align:  center;
  }
.hero p {
  color: rgba(196,77,151,1.0);
  margin: auto;
  font-size: 12px;
  }
}

.hero p {
  color: rgba(196,77,151,1.0);
  margin: 0 auto;
  font-size: 24px;
}

#sample {

animation:sample 5s linear infinite;
animation-iteration-count:1;
animation-fill-mode: forwards;

}

@keyframes sample {
0% {
  opacity : 0;
}
50%{
  opacity : 0.5;
}
100% {
  opacity : 1.0;
  transform:scale(1.2);
}

}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about {
  padding: 200px 0;
  padding-bottom:80px;
  background-color: rgba(255,255,255,1) !important;
  text-align:  center;
}
/* For h2 Text*/
.home-about .about-content .section-heading {
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
/* For Mobile h2 Text*/
@media (max-width: 768px) {
  .home-about .about-content .section-heading {
    font-size: 2rem;
  }
}
/*For Lead Text*/
.home-about .about-content .lead-text {
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1.7;
  color: rgba(83,83,83,1.0) !important;
  margin-bottom: 1.5rem;
}
/* For p */
.home-about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(83,83,83,1.0) !important;
  margin-bottom: 1.0rem;
}

.home-about .specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(83,83,83,1.0) !important;
  font-weight: 400;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-about .specialty-link:hover {
  color: rgba(83,83,83,0.8) !important;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Featured Departments Section
--------------------------------------------------------------*/
.featured-departments .specialty-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-departments .specialty-card:hover {
  transform: translateY(0);
  box-shadow: none;
}

.featured-departments h3 {
  font-size: 28px;
  font-weight: 300;
  color: rgba(83,83,83,1.0) !important;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-departments .specialty-card p {
  color: rgba(83,83,83,1.0) !important;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
  /*letter-spacing: 0.1em;*/
}

.featured-departments .specialty-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(83,83,83,1.0);
}

.featured-departments .specialty-features span i {
  color: rgba(83,83,83,1.0);
  font-size: 18px;
}

.featured-departments .specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(83,83,83,1.0) !important;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.featured-departments .specialty-link:hover {
  color: rgba(83,83,83,0.8) !important;
  transform: translateX(5px);
}

/*-----------------------------------------
Featured-Departments Department-Highlight
-----------------------------------------*/

.featured-departments .department-highlight {
  background: rgba(83,83,83,0.05) !important;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(83,83,83,0.5) !important;
  transition: all 0.3s ease;
}

.featured-departments .department-highlight:hover {
  border-color: rgba(83,83,83,1.0) !important;
  transform: translateY(-3px);
}

/* For department-hightlight */
.featured-departments h4 {
  font-size: 22px;
  font-weight: 400;
  color: rgba(83,83,83,1.0) !important;
  margin-bottom: 15px;
}

.featured-departments .department-highlight p {
  color: rgba(83,83,83,0.5) !important;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-departments .highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(115,184,228,1.0),rgba(115,184,228,0.5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.featured-departments .highlight-icon i {
  color: rgba(255,255,255,0.8);
  font-size: 32px;
}

.featured-departments .highlight-list li {
  padding: 8px 0;
  color: rgba(115,184,228,1.0) !important;
  font-size: 14px;
  position: relative;
}

.featured-departments .highlight-list li:before {
  content: "→";
  color: rgba(83,83,83,0.5) !important;
  font-weight: bold;
  margin-right: 10px;
}

.featured-departments .highlight-cta {
  color: rgba(115,184,228,1.0);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 1.0s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-departments .highlight-cta:hover {
  color: rgba(83,83,83,0.5);
}

/*-----------------------------------------
Featured-Departments Emergency Banner
-----------------------------------------*/
.featured-departments .emergency-banner {
  background: linear-gradient(135deg, rgba(115,184,228,0.5),rgba(115,184,228,0.1));
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  /*color: var(--contrast-color);*/
}

.featured-departments .emergency-banner h3 {
  color: rgba(255,255,255,1.0)!important;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.featured-departments .emergency-banner p {
  color: rgba(83,83,83,1.0);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.featured-departments .emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.5);
  color: rgba(115,184,228,0.5);
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.featured-departments .emergency-btn:hover {
  background: rgba(115,184,228,1.0);
  transform: translateY(-5px);
  color: rgba(255,255,255,1.0);
}

.featured-departments .emergency-btn i {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Blog News
--------------------------------------------------------------*/

/* お知らせ全体のコンテナ */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px solid #eef2f5;
    transition: all 0.3s ease;
}

/* 押しやすいリンクエリア */
.news-link {
    display: block;
    text-decoration: none;
    color: #2c3e50;
    padding: 18px 12px;
    border-radius: 8px;
}

.news-item:hover {
    background-color: #f8fafc;
    transform: translateX(4px);
}

/* --- 【新設計】文字の長さに合わせて詰めるFlexレイアウト --- */
.news-inline-container {
    display: flex;
    flex-wrap: wrap;       /* スマホ画面や文字が溢れたら自動で折り返す */
    align-items: center;   /* 上下の中心を揃える */
    gap: 12px;             /* 要素同士の間の自然な隙間 */
}

/* 日付のスタイル（常に先頭） */
.news-date {
    font-size: 0.9rem;
    color: rgba(83,83,83,0.8);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.05em;
    font-weight: 300;
    white-space: nowrap;   /* 日付の途中で改行させない */
}

/* 記事タイトル（日付のすぐ後ろに配置） */
.news-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(83,83,83,1.0);
    /* タイトルが長すぎるときは、バッジを押し出さないように自動で縮む */
    flex-shrink: 1;
}

/* カテゴリバッジ（タイトルのすぐ後ろにピッタリ配置） */
.category-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 400;
    letter-spacing: 0.02em;
    display: inline-block;
    white-space: nowrap;   /* バッジ内の文字を改行させない */
    flex-shrink: 0;        /* バッジ自体は絶対に潰さない */
}

/* 各カテゴリのオリジナルカラー */
.badge-web { background-color: rgba(196,77,151,1.0); color: #FFFFFF !important; }
.badge-graphic { background-color: rgba(64,183,218,1.0); color: #FFFFFF !important; }
.badge-sign { background-color: rgba(46,109,158,1.0); color: #FFFFFF !important; }
.badge-info { background-color: rgba(83,83,83,1.0); color: #FFFFFF !important; }
.news-link:hover .news-title { color: rgba(83,83,83,0.5); }


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services .service-details h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: rgba(83,83,83,1.0);
}

.featured-services .service-details p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(83,83,83,1.0);
  margin-bottom: 25px;
}

.featured-services .main-cta {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(83,83,83,1.0)!important;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.featured-services .main-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(83,83,83,1.0);
  transition: transform 0.5s ease;
}

.featured-services .main-cta:hover {
  color: rgba(83,83,83,0.5)!important;
}

.featured-services .main-cta:hover::after {
  transform: scaleX(1.5);
  background: rgba(196,77,151,1.0);
}

.featured-services .service-info h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color:  rgba(115,184,228,1.0);
  line-height: 1.4;
}

.featured-services .service-info p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(83,83,83,0.5);
  margin-bottom: 12px;
}

.featured-services .service-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(115,184,228,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featured-services .service-icon-wrapper i{
  font-size: 20px;
  color: rgba(115,184,228,1.0);
  transition: all 0.3s ease;
}

.featured-services .service-link {
  font-size: 14px;
  color: rgba(115,184,228,1.0);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .service-link:hover {
  color: rgba(115,184,228,0.5);
}

.featured-services .specialty-content h5 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(115,184,228,1.0);
  margin-bottom: 8px;
}

.featured-services .specialty-content span {
  font-size: 14px;
  color: rgba(83,83,83,0.5);
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Featured Services Gra Section
--------------------------------------------------------------*/

.featured-services-gra .service-details h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: rgba(83,83,83,1.0);
}

.featured-services-gra .service-details p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(83,83,83,1.0);
  margin-bottom: 25px;
}

.featured-services-gra .main-cta {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(83,83,83,1.0)!important;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.featured-services-gra .main-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(83,83,83,1.0);
  transition: transform 0.5s ease;
}

.featured-services-gra .main-cta:hover {
  color: rgba(83,83,83,0.5)!important;
}

.featured-services-gra .main-cta:hover::after {
  transform: scaleX(1.5);
  background: rgba(196,77,151,1.0);
}

.featured-services-gra .service-info h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color:  rgba(115,184,228,1.0);
  line-height: 1.4;
}

.featured-services-gra .service-info p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(83,83,83,0.5);
  margin-bottom: 12px;
}

.featured-services-gra .service-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(115,184,228,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featured-services-gra .service-icon-wrapper i{
  font-size: 20px;
  color: rgba(115,184,228,1.0);
  transition: all 0.3s ease;
}

.featured-services-gra .service-link {
  font-size: 14px;
  color: rgba(115,184,228,1.0);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services-gra .service-link:hover {
  color: rgba(115,184,228,0.5);
}

.featured-services-gra .specialty-content h5 {
  font-size: 18px;
  font-weight: 400;
  color: rgba(115,184,228,1.0);
  margin-bottom: 8px;
}

.featured-services-gra .specialty-content span {
  font-size: 14px;
  color: rgba(83,83,83,0.5);
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 50px 0 50px;
  background: rgba(255,255,255,1.0);
  margin-bottom:100px;
  margin-top:150px;
}

.call-to-action .contact-block {
  background-color: rgba(83,83,83,0.05);
  padding: 60px 40px;
  border-radius: 4px;
}

.call-to-action .contact-block .contact-content h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(83,83,83,0.8);
}

.call-to-action .contact-block .contact-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(83,83,83,0.8);
  margin-bottom: 0;
}

.call-to-action .contact-block .contact-actions .emergency-call {
  display: inline-flex;
  align-items: center;
  background-color: rgba(83,83,83,0.3);
  color: rgba(196,77,151,0.5)!important;
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.call-to-action .contact-block .contact-actions .emergency-call:hover {
  background-color: rgba(83,83,83,0.1);
  transform: translateY(-2px);
}

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

.footer-16 {
  background: rgba(83,83,83,0.3);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 300;
  color: rgba(196,77,151,1.0);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(83,83,83,1.0);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(83,83,83,1.0);
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: rgba(83,83,83,1.0);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer-16 .nav-column h6 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: rgba(115,184,228,1.0);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav a {
  color: rgba(83,83,83,1.0)!important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer-16 .nav-column .footer-nav a:hover {
  color: rgba(83,83,83,0.3)!important;
  transform: translateX(4px);
}

.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: rgba(196,77,151,1.0)!important;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
  color: rgba(196,77,151,0.5)!important;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: rgba(46,109,158,1.0);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: rgba(255,255,255,1.0);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(46,109,158,0.5);
  color: rgba(255,255,255,1.0);
}

/*--------------------------------------------------------------
# FOR LEVEL2 Setting
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h2 {
  font-size: 2.0rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about .about-content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(83,83,83,1.0);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(83,83,83,0.5);
}

.about .values-section h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about .values-section .section-description {
  font-size: 1.1rem;
  color: rgba(83,83,83,1.0);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about .values-section .value-item .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(83,83,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .values-section .value-item .value-icon i {
  font-size: 2rem;
  color: rgba(115,184,228,1.0);
}
.about .values-section .value-item {
  margin-top: 120px;
  margin-bottom:80px;
}

.about .values-section .value-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about .values-section .value-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(83,83,83,0.8);
  margin: 0;
}

.about .values-section .value-item:hover .value-icon {
  background: rgba(83,83,83,0.8);
  transform: scale(1.1);
}

.about .values-section .value-item:hover .value-icon i {
  color: rgba(115,184,228,0.3);
}





