html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  border: 3px solid white;
  padding: 10px;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1);
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/
.services-wrapper {
  margin-top: 30px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-icon img {
  width: 55px;
}

.service-text {
  margin-top: 12px;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .service-item {
    width: 25%;
    margin-bottom: 20px;
  }
}

/* 
---------------------------------------------
Services Style Ends
--------------------------------------------- 
*/
/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/
.highlight {
  position: relative;
  background-image: url(/assets/images/highlight.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.bordershadow:hover {
  border: 3px solid #4169e1;
}
.bordershadow-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 3px solid #4169e1;
}

.hero-section {
  background: url("https://images.unsplash.com/photo-1527689368864-3a821dbccc34?auto=format&fit=crop&w=1600&q=80")
    no-repeat center center/cover;
  padding: 100px 30px;
  position: relative;
}

.hero-section-common {
  background: url("/assets/images/common-hero-bg.jpg") no-repeat center
    center/cover;
  position: relative;
  padding: 5rem 1rem 7rem; /* bottom padding gives room for the overlap */
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

/* kill the padding that breaks centering */
.hero-section-common h1 {
  color: white;
  padding: 0 !important;
  margin: 0; /* optional: tighter centering */
}

.hero-section::before {
  background: rgba(255, 255, 255, 0.9);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.text-highlight {
  color: #4169e1;
}

.text-orange {
  color: #ff4500;
  text-decoration: none;
}

.text-orange:hover {
  text-decoration: underline;
}

.bggray {
  background-color: #f3f6fd;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background-image: url(/assets/images/quote-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 
---------------------------------------------
Footer Style ends
--------------------------------------------- 
*/

.ai-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-6px);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrapper i {
  font-size: 28px;
  color: #000;
}

.card-title {
  font-weight: 700;
  margin-bottom: 15px;
}

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

.ai-card:hover,
.ai-card:focus,
.ai-card:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
