:root {
    --primary-color: #f8fdff;
    --secondary-color: #0083c3;
    --tirnary-color: #000000;
    --text-color: #555;
    --white-color: #ffffff;
    --black-color: #000000;
    --accent-color: #0083c3;
    --white-divider: #ffffff70;
    --divider-color: #DADADA;
    --overlay-color: rgba(22, 51, 0, 0.65);
    --error-color: rgb(230, 87, 87);
    --accent-font: "Mango Grotesque", serif;
    --default-font: "Urbanist", sans-serif;
}

.bg-primary{
  background: var(--primary-color)!important;
}

.bg-secondary{
  background: var(--secondary-color)!important;
}

.bg-secondary2{
  background: var(--accent-color)!important;
}

body {
    font-size: 17px;
    line-height: 28px;
    font-family: var(--default-font);
    font-weight: 400;
    color: var(--text-color);
    word-break: break-word;
    background-color: var(--white-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.btn-default {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500; 
    border: 1px solid var(--accent-color);
    padding: 9px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.2s transform ease-in-out;
}

.btn-default:after {
    background-color: var(--tirnary-color);
    border-radius: 5px;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    /* transform: translate(-100%, 0) rotate(10deg); */
    transform: translateY(100%);
    transform-origin: top;
    transition: 0.5s transform ease-out;
    /* will-change: transform; */
    z-index: -1;
}

.btn-default:hover {
        color: #ffffff;
    border: 1px solid var(--tirnary-color);
}

.btn-default:hover::after {
    /* transform: translate(0, 0); */
    transform: translateY(0);
}

/*About*/
.about-section{
    padding: 60px 0;
}

.small-title {
  font-size: 14px;
  color: var(--tirnary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-family: var(--default-font);
}

.main-title span {
  color: var(--secondary-color);
}

.description {
  margin-bottom: 10px;
}

.custom-btn {
  padding: 10px 20px;
  border-radius: 6px;
}

.about-section h6{
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-family: var(--default-font);
}

.feature-text {
}

/* CARD */
.info-card {
  background: var(--primary-color);
  padding: 15px;
  border-radius: 12px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.degree h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-family: var(--default-font);
}

.degree h6{
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    font-family: var(--default-font);
}

.image-box img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

/*Services*/
.service-sec{
    padding: 60px 0;
    background: var(--primary-color);
}

  /* Carousel */
  .carousel-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slide 32s linear infinite;
  }

  .carousel-track:hover {
    animation-play-state: paused;
  }

  @keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Card — horizontal layout like the screenshot */
  .service-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #b5dbee;
    overflow: hidden;
    width: 670px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    /*transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(26,127,189,0.15);*/
  }

  /* Left image */
  .card-img-wrap {
    width: 350px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 14px;
    margin: 10px 0 10px 10px;
  }

  .card-img-wrap img,
  .card-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
  }

  /* Right content */
  .card-content {
    padding: 20px 20px 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
  }

  .card-text {
    flex: 1;
    margin-bottom: 10px;
  }

  /* Button */
  .btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: transparent;
    border: 1.5px solid #b5dbee;
    border-radius: 50px;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    overflow: hidden;
    width: fit-content;
    text-decoration: none;
    transition: border-color 0.3s ease;
  }

  .btn-explore:hover {
    border-color: var(--secondary-color);
  }

  .btn-explore-text {
    padding: 12px 16px 12px 18px;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 50px 0 0 50px;
    /*transition: background 0.3s ease, color 0.3s ease;*/
    white-space: nowrap;
  }

  .btn-explore:hover .btn-explore-text {
    background: var(--secondary-color);
    color: #fff;
  }

  .btn-explore-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    flex-shrink: 0;
    transition: background 0.3s ease;
  }

  .btn-explore:hover .btn-explore-icon {
    background: var(--accent-color);
  }

  .btn-explore-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  i.i-color{
    color: var(--tirnary-color);
  }

  /*Trust*/
  .trust {
    padding: 60px 0;
  }
.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
  }

.left-block { flex: 1; max-width: 700px; }

.right-desc {
    max-width: 360px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.65;
    padding-top: 8px;
}

.features-wrap {
    border: 1.5px solid #b5dbee;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
}

.feature-item {
    flex: 1;
    padding: 45px 28px 45px;
    position: relative;
    background: #fff;
    transition: background 0.3s ease;
    cursor: default;
  }

  .feature-item i{
      font-size: 50px;
      line-height: 60px;
      margin-bottom: 20px;
      color: var(--tirnary-color);
  }

  /* Vertical dividers between items */
    .feature-item + .feature-item {
        border-left: 1.5px solid #b5dbee;
      }

  .feature-item:hover {
    background: var(--primary-color);
  }

  .feature-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
  }

/*Testimonials*/
  /* Card */
  .review-card {
    background: var(--primary-color);
    border-radius: 20px;
    border: 1.5px solid #b5dbee;
    width: 420px;
    flex-shrink: 0;
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
     justify-content: flex-end;
   text-align: right;
   align-items: flex-end;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-card:hover {
   /* transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(26,127,189,0.13);*/
  }

  /* Top row: avatar left, quote icon right */
  .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--secondary-color);
    overflow: hidden;
    flex-shrink: 0;
  }

  .quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .quote-icon i {
    color: #fff;
    font-size: 32px;
  }

  /* Stars */
  .stars { display: flex; gap: 3px; }
  .star { color: var(--tirnary-color); font-size: 28px; }
  .star.half { position: relative; display: inline-block; }

  /* Review text */
  .review-text {
    flex: 1;
  }

  /* Name & role */
  .reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1px;
  }

  .reviewer-role {
    font-size: 14px;
    color: #000;
  }

/*Form*/
.faq-three-area{
    padding: 60px 0;
  
}

.faq-three-area form{
      background: var(--primary-color);
      padding: 40px;
      border-radius: 20px;
}

.faq-three-area form label{
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
}

/*Blog*/
.blog-two-area{
    padding: 60px 0;
    background: var(--secondary-color);
}

/*facilities*/


/* Section */
.facility-section {
    padding: 60px 0;
    text-align: center;
}

/* Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Card */
.facility-card {
    position: relative;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.4s;
    overflow: hidden;
}

/* Gradient Glow Border */
.facility-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(120deg, #006ca1, #0083c3, #006ca1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Hover */
.facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Icon */
.facility-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--tirnary-color);
}

/* Title */
.facility-card h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
}

/* Number Badge */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 10px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/*Attachments*/

/* Section Background */
.process-section {
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}


/* Card Design */
.process-card {
    background: #fff;
    color: var(--text-color);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.3s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
}

/* Step Number */
.step-number {
    position: absolute;
    right: 20px;
    top: 5px;
    font-size: 50px;
    font-weight: bold;
    color: rgba(0,0,0,0.09);
}

/* Title */
.process-card h5 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 32px;
    color: var(--secondary-color);
}

/* Info Row */
.info {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    font-weight: 500;
}

.info i {
    color: var(--tirnary-color);
    margin-right: 10px;
    margin-top: 3px;
}

/*Blog*/
.blog-section {
  padding: 60px 0;
  background: var(--primary-color);
}

.blog-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.blog-card {
  width: 32%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.date-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 16px;
}

.date-badge span {
  display: block;
  font-size: 12px;
  color: #777;
}

.blog-content {
  padding: 20px 15px 20px;
}

.tag {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title a{
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 30px;
}

.blog-title a:hover{
  color: var(--secondary-color);
}

/* Responsive */
@media(max-width: 992px) {
  .blog-card {
      width: 48%;
  }
}

@media(max-width: 600px) {
  .blog-card {
      width: 100%;
  }
}

/*footer*/

.cta-banner {
  background: var(--primary-color);
  border-radius: 14px;
  padding: 28px 36px;
  margin-bottom: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-banner h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-schedule {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-schedule:hover {
  background: #1568a8;
}

/* ── Bottom Section ── */
.bottom-section {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* Logo Card */
.logo-card {
  background: var(--accent-color);
  border-radius: 20px;
  width: 380px;
  min-height: 350px;
  flex-shrink: 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-card .logo-icon {
  width: 40px;
  height: 40px;
}

.logo-card .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Info Card */
.info-card2 {
  background: var(--primary-color);
  border-radius: 20px;
  flex: 1;
  padding: 20px 15px;
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
  justify-content: space-between;
}

.info-top {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-description {
  max-width: 350px;
}

.newsletter {
  flex: 1;
}

.newsletter h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.35;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  background: #fff;

  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.newsletter-form input::placeholder {
  color: #aaa;
}

.btn-send {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-send:hover {
  background: #1568a8;
}

/* Nav */
.below {
    position: relative;
    overflow: hidden;
}
.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 35px;
    padding-bottom: 30px;
    border-top: 1px solid #e2f6ff;
}

.footer-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--secondary-color);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .copyright {
  font-size: 14px;
  color: var(--text-color);
}

.footer-bottom .footer-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-links a {
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .footer-links a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 16px;
  
}

.social-card {
  background: var(--primary-color);
  border-radius: 14px;
  width: 310px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  margin-bottom: 30px;
}

.social-card:hover {
  background: #e2f6ff;
  transform: translateY(-2px);
}

/* X (Twitter) */
.icon-x svg {
  width: 42px;
  height: 42px;
  fill: var(--secondary-color);
}

/* LinkedIn */
.icon-linkedin {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -1px;
}

/* Dribbble */
.icon-dribbble svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--secondary-color);
  stroke-width: 2;
}

/* Facebook */
.icon-facebook {
  font-size: 42px;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: Georgia, serif;
  font-style: italic;
}

.logo {
    margin-left: 95px;
}

/*About pg*/
.timeline-edu {
  padding: 60px 0;
  background: var(--primary-color);
}

/* Wrapper line */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* vertical line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(var(--secondary-color), #0071a9);
}

/* each item */
.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
  position: relative;
}

/* dot */
.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 50%;
  position: relative;
  margin-left: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(128,0,0,0.1);
}

/* content */
.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  width: 100%;
  transition: 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* year */
.timeline-year {
  font-size: 14px;
  color: var(--text-color);
  display: inline-block;
  margin-bottom: 6px;
}

/* title */
.timeline-content h3 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* college */
.timeline-content p {
  margin: 10px 0;
}

/* meta */
.timeline-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.timeline-meta span {
  font-weight: 600;
  color: var(--secondary-color);
}

.timeline-meta small {
  background: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--secondary-color);
}

.contact-ip-area {
    padding: 60px 0;
    background: var(--primary-color);
}

/*Contact pg*/

  .bg-accent {
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(107,26,26,0.06);
    pointer-events: none;
  }

  .bg-accent2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(107,26,26,0.04);
    pointer-events: none;
  }

  .inner {
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* TOP HERO STRIP */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--secondary-color);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -40px; right: 60px;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .hero-left { display: flex; align-items: center; gap: 16px; }

  .logo-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .logo-circle svg {
    width: 24px; height: 24px;
    stroke: #fff; fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  }

  .hero-name {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
  }

  .hero-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-top: 5px;
  }

  .hero-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* BODY */
  .bodi {
    background: var(--primary-color);
    border: 0.5px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 0;
    overflow: hidden;
  }

  .contact-row {
    display: flex;
    align-items: stretch;
    border-bottom: 0.5px solid #fff9;
    transition: background 0.2s;
    cursor: default;
  }

  .contact-row:last-child { border-bottom: none; }

  .contact-row:hover { background: rgb(240 250 255); }

  .row-icon {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.5px solid #fff9;
    padding: 1.4rem 0;
  }

  .icon-dot {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgb(215 242 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-dot svg {
    width: 17px; 
    height: 17px;
    stroke: var(--secondary-color); 
    fill: none;
    stroke-width: 1.8; 
    stroke-linecap: round; 
    stroke-linejoin: round;
  }

  .row-body {
    flex: 1;
    padding: 15px 5px;;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .row-label {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
  }

  .row-val {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 30px;
  }

  .row-val a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.15s;
  }

  .row-val a:hover { color: var(--secondary-color); }

  .row-arrow {
    width: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    transition: opacity 0.2s;
  }

  .contact-row:hover .row-arrow { opacity: 0.7; }

  .row-arrow svg {
    width: 14px; 
    height: 14px;
    stroke: var(--accent-color); 
    fill: none;
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round;
  }

  /* BOTTOM STRIP */
  .footer-strip {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .foot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
  }

  .foot-btn:hover { opacity: 0.88; }

  .foot-btn svg {
    width: 15px; 
    height: 15px;
    fill: none; 
    stroke-width: 2;
    stroke-linecap: round; 
    stroke-linejoin: round;
  }

  .btn-primary {
    background: var(--secondary-color);
    color: #fff;
  }

  .btn-primary svg { stroke: #fff; }

  .btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid rgb(0 131 195) !important;
  }

  .btn-outline svg { stroke: var(--secondary-color); }

  .map-chip {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
    background: var(--primary-color);
    border: 0.5px solid var(--accent-color);
    font-size: 15px;
    color: var(--text-color);
    letter-spacing: 0.3px;
  }

  .map-chip svg {
    width: 13px; 
    height: 13px;
    stroke: var(--accent-color); 
    fill: none;
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round;
    flex-shrink: 0;
  }

.footer-block {
/*  background: #FDF6F6;
  border-radius: 10px;
  padding: 1.5rem;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  /*border: 0.5px solid var(--primary-color);*/
}
.divider-v {
  width: 0.5px;
  background: var(--primary-color);
  align-self: stretch;
  margin: 0 -0.75rem;
}
.section-head {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--primary-color);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-label { font-size: 14px; color: var(--text-color); margin: 0; }
.info-val { font-size: 16px; font-weight: 500; line-height: 24px;  margin: 0; }
.info-val a{
  color: var(--text-color);
}
.right-col {
  display: flex;
  flex-direction: column;
}
.appt-top p {
  font-size: 16px;
  color: var(--text-color);
  margin: 0 0 20px;
  line-height: 1.6;
}
.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 0;
  background: #7B1414;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.or-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.or-divider span {
  font-size: 12px;
  color: var(--text-color);
  white-space: nowrap;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--primary-color);
}
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  box-sizing: border-box;
}
.btn-default a{
  color: var(--white-color);
}
.call-btn a{
  color: var(--accent-color);
}
.badgee {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    background: #b5dbee;
    color: var(--accent-color);
    margin-bottom: 10px;
}

    /* ── HERO WRAPPER ── */
    .sg-hero {
      position: relative;
      display: flex;
      align-items: center;
    }

    /* ── INNER LAYOUT ── */
    .sg-hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
    }

    /* ── LEFT COLUMN ── */
    .sg-left {
      flex: 0 0 auto;
      max-width: 620px;
    }

    /* Emergency Badge */
    .sg-emergency {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #ffffff;
      border-radius: 10px;
      padding: 10px 18px;
      margin-bottom: 30px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    }

    .sg-emergency-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .sg-emergency-icon svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
    }

    .sg-emergency-phone {
      display: block;
     
      font-weight: 700;
      font-size: 15px;
      color: #0d2a50;
      line-height: 1.3;
    }

    .sg-emergency-label {
      display: block;
      
      font-size: 11px;
      color: #5a7a9c;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    /* Headline */
    .sg-headline {
    font-weight: 800;
    font-size: 55px;
    line-height: 65px;
    color: #ffffff;
    margin-bottom: 30px;
    }

    .btn-default.two{
      background: transparent;
      color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.55);
      border-radius: 10px;
      padding: 8px 22px;
      font-weight: 600;
      font-size: 16px;
      /* display: inline-flex; */
      align-items: center;
      gap: 6px;
      transition: 0.2s;
    }

    .btn-default.two:after {
        background-color: var(--accent-color);
        border-radius: 0px;
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        /* transform: translate(-100%, 0) rotate(10deg); */
        transform: translateY(100%);
        transform-origin: top;
        transition: 0.5s transform ease-out;
        /* will-change: transform; */
        z-index: -1;
    }

    .btn-default.two:hover {
      border-color: #ffffff;
    }

    .sg-btn-arrow {
      font-size: 15px;
    }

/* ── RIGHT COLUMN ── */
.sg-right {
  flex: 0 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}

/* Description */
.sg-description {
  color: rgba(255, 255, 255);
}

/* Rating Row */
.sg-rating-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sg-rating-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sg-stars {
  display: flex;
  gap: 3px;
}

.sg-star {
  color: #f5a623;
  font-size: 22px;
}

.sg-rating-number {
  font-weight: 800;
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
}

.sg-rating-total {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.sg-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
}

/* Trusted Block */
.sg-trusted-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sg-avatar-stack {
  display: flex;
  align-items: center;
}

.sg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /*border: 2px solid rgba(13, 42, 80, 0.8);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.sg-avatar:not(:first-child) {
  margin-left: -10px;
}

.sg-avatar-purple { background: #7c3aed; }
.sg-avatar-amber  { background: #b45309; }
.sg-avatar-teal   { background: #0891b2; }

.sg-avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /*border: 2px solid rgba(13, 42, 80, 0.8);*/
  background: var(--secondary-color);
  color: #ffffff;
 
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.sg-trusted-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.about-one{
    padding: 60px 0;
    background: var(--primary-color);
}

  .ic-section2 { margin-top: 2rem; }
  
  .ic-h2 {  font-size: 26px; font-weight: 600; margin: 0 0 1.5rem; color: var(--secondary-color); }
  
  .ic-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .ic-card { 
    background: #fff;
    border: 0.5px solid #def4ff;
    border-radius: 0 10px 10px 0;
    padding: 10px 18px;
    position: relative;
    overflow: hidden;
  }
  
  .ic-card-accent { 
    position: absolute; top: 0; left: 0; width: 3px; height: 100%; 
    background: linear-gradient(120deg, #006ca1, #0083c3, #006ca1);
  }
  
  .ic-card-icon { 
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .ic-card-icon i{
    color: var(--secondary-color);
    font-size:22px;
  }
  
  .ic-card-title { 
    font-weight: 500; color: var(--secondary-color); margin: 0 0 5px; 
    font-size: 18px;
  }
  
  .ic-card-body {  
   color: var(--text-color);
 }

 /**/
 /**/
 /**/
 /**/
 /**/

/* .chat-launcher { 
  position: absolute; 
  bottom: 24px; 
  left: 24px; 
  display: flex; 
  flex-direction: column; 
  align-items: flex-end; 
  gap: 10px; 
  z-index: 9
}*/

a.chat-bubble-btn { 
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 20px 13px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.15s;
}

a.chat-bubble-btn:hover { 
  background: #000; 
}
.chat-bubble-btn i { 
  font-size: 22px; 
}
.online-dot { 
  width: 12px;
  height: 12px;
  background: #0fe09e;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}