* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



/* HEADER */
.dc-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

/* NAVBAR */
.dc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: transparent;
  transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.dc-header.scrolled .dc-navbar {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* LOGO */
.dc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dc-logo img {
  height: 65px;
  width: 140px;
}

.dc-icon {
  background: #2ec4b6;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.dc-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.dc-header.scrolled .dc-text {
  color: #111;
}

/* NAV LINKS */
.dc-nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.dc-nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.dc-header.scrolled .dc-nav-links a {
  color: #222;
}


.dc-nav-links a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #2ec4b6;
  left: 0;
  bottom: -6px;
}

/* ACTIONS */
.dc-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}



.dc-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.dc-header.scrolled .dc-phone {
  color: #222;
}

.dc-btn {
  background: #ff7a3d;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.dc-menu-btn {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.dc-header.scrolled .dc-menu-btn {
  color: #222; /* black on scroll */
}

.dc-nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2ec4b6;
  transition: width 0.3s ease;
}

/* hover effect */
.dc-nav-links a:hover::after {
  width: 100%;
}

/* hover color */
.dc-nav-links a:hover {
  color: #2ec4b6;
}

/* scrolled hover color */
.dc-header.scrolled .dc-nav-links a:hover {
  color: #2ec4b6;
}

 


@media (min-width: 769px){
.dc-header .dc-menu-btn{
  display: none;

}
.dc-mobile-btn{
  display: none;
 }
}
@media (max-width: 768px) {

  .dc-navbar {
    padding: 16px 25px;
  }
  .dc-logo img{
    height: 55px;
    width: 120px;
  }


  .dc-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    display: flex;
    flex-direction: column;
    gap: 22px;

    padding: 25px 25px 30px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }

  .dc-nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dc-nav-links a {
    color: #111;
    font-size: 18px;
    font-weight: 500;
  }

  /* Hide desktop actions */
  .dc-phone,
  .dc-actions .dc-btn {
    display: none;
  }

  /* Mobile hamburger */
  .dc-menu-btn {
    display: block;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
  }

  .dc-header.scrolled .dc-menu-btn {
    color: #222;
  }

  /* Mobile button */
  .dc-mobile-btn {
    margin-top: 10px;
  }

  .dc-mobile-btn .dc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
  }
}








.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

/* BACKGROUND IMAGES */
.slide-1 { background-image: url("b-1.png"); }
.slide-2 { background-image: url("b-2.png"); }
.slide-3 { background-image: url("b-3.png"); }

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 60, 80, 0.75),
    rgba(15, 60, 80, 0.25)
  );
}

/* Content */
.hero-content {
  position: relative;
  max-width: 1200px;
  padding-left: 120px;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  margin: 35px 0;
}
.hero-content p{
  color: #E9F1F4;
  font-size: 19px;
  line-height: 1.5;
}


.hero-badge {
  background: rgba(46,196,182,.3);
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;

  
}

.btn-primary {
  background: #ff7a3d;
  padding: 16px 26px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 12px 22px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
    margin-top: 20px;

}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  right: 95.5%;
  transform: translateY(-50%);
  background: #f0e5e518;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 30px;
    border-radius: 50%;
     position: absolute;
  top: 50%;


 }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Inactive dots */
.hero-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active dot (pill shape) */
.hero-dots .dot.active {
  width: 28px;
  height: 8px;
  background: #2ec4b6; /* teal */
  border-radius: 50px;
}


.hero-dots .dot {
  transition: width 0.35s ease, background-color 0.35s ease;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 40px;
  }
  .hero-content p{
    font-size: 13px;
  }
  .hero-badge{
    font-size: 8px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }
.hero-arrow {
  right: 80%;
  font-size: 15px;
   transform: translateY(-50%)
}
.next{
  left: 85%;
  border-radius: 50%;
  width: 40px;
}
.prev{
  width: 40px;
}

.btn-primary {
  width: 80%;
    padding: 13px;
    text-align: center;
    font-size: 15px;

}
}












.svc-wrap {
  padding: 80px 6%;
  background: #ffffff;
  text-align: center;
}

.svc-pill {
  display: inline-block;
  background: #e6faf6;
  color: #14b8a6;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.svc-heading {
  font-size: 44px;
  margin: 20px 0 12px;
  color: #1f2933;
}

.svc-subtext {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.svc-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-card:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
}

/* icon colors */
.icon-orange { background: #fff1eb; color: #ff6b35; }
.icon-green  { background: #e7faf6; color: #14b8a6; }
.icon-peach  { background: #fff2eb; color: #ff7849; }
.icon-teal   { background: #e7faf6; color: #14b8a6; }

.svc-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1f2933;
}

.svc-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.svc-link {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .svc-wrap{
    padding: 40px 6%;
  }
  .svc-heading {
    font-size: 32px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    text-align: center;
  }

  .svc-icon {
    margin: 0 auto 20px;
  }
}









.abt-wrap {
  padding: 90px 6%;
  background: #eaf8fb;
}

.abt-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE SIDE */
.abt-image-box {
  position: relative;
}

.abt-image-box img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

/* STATS CARD */
.abt-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-20%);
  background: #ffffff;
  display: flex;
  gap: 40px;
  padding: 25px 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.abt-stat {
  text-align: center;
}

.abt-stat i {
  color: #14b8a6;
  font-size: 22px;
  margin-bottom: 6px;
}

.abt-stat h4 {
  font-size: 22px;
  margin: 4px 0;
  color: #0f172a;
}

.abt-stat span {
  font-size: 14px;
  color: #6b7280;
}

/* CONTENT SIDE */
.abt-tag {
  display: inline-block;
  background: #e6faf6;
  color: #14b8a6;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.abt-content h2 {
  font-size: 44px;
  margin: 20px 0;
  color: #1f2933;
}

.abt-content p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 17px;
}

.abt-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.abt-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #1f2933;
  font-weight: 500;
}

.abt-list i {
  background: #e6faf6;
  color: #14b8a6;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.abt-btn {
  display: inline-block;
  background: #14b8a6;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20,184,166,0.35);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .abt-wrap{
    padding: 40px 6%;
  }
  .abt-container {
    grid-template-columns: 1fr;
  }

  .abt-stats {
    position: static;
    transform: none;
    margin-top: 20px;
    justify-content: center;
  }

  .abt-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .abt-stats {
    flex-direction: column;
    gap: 20px;
  }

  .abt-content h2 {
    font-size: 30px;
  }
}












.review-zone {
  padding: 90px 6%;
  text-align: center;
}

.review-badge {
  background: #fff1eb;
  color: #ff7849;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.review-heading {
  font-size: 44px;
  margin: 20px 0 10px;
  color: #1f2933;
}

.review-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #6b7280;
}

.carousel-shell {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.carousel-strip {
  display: flex;
  transition: transform 0.5s ease;
}

.feedback-card {
  min-width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.rating-stars i {
  color: #ff7849;
}

.feedback-text {
  margin: 20px 0 30px;
  font-size: 18px;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.quote-mark {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 44px;
  color: #e6faf6;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  cursor: pointer;
}

.nav-prev { left: 4px;
  background: #f0e5e518;
 }
.nav-next { right: 4px;
  background: #f0e5e518;
 }

/* DOTS */
.dot-holder {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.dot-holder span {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.dot-holder span.active {
  width: 26px;
  background: #14b8a6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-zone{
    padding: 40px 6%;
  }
  .review-heading { font-size: 32px; }

  .nav-prev { left: -12px;
    font-size: 12px;
  }
  .nav-next{
    right: -12px;
    font-size: 12px;
  }
}








.cta-wrap {
  background: #2dbfb2;
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrap::before,
.cta-wrap::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-wrap::before {
  top: -120px;
  left: -120px;
}

.cta-wrap::after {
  bottom: -120px;
  right: -120px;
}

.cta-inner {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 54px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-text {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 45px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn.primary {
  background: #ff7a3d;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
}

.cta-btn.outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  background: transparent;
}

.cta-btn.outline:hover {
  background: rgba(255,255,255,0.15);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 16px;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-features i {
  color: #ff7a3d;
  font-size: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .cta-wrap{
    padding: 50px 6%;
  }
  .cta-title {
    font-size: 36px;
  }

  .cta-text {
    font-size: 17px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 30px;
  }

  .cta-features {
    flex-direction: column;
    gap: 14px;
  }
}











.ft-wrap {
  background: #163f54;
  color: #d1e6ee;
  padding-top: 70px;
}

.ft-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 0 6% 60px;
}

/* BRAND */
.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ft-logo span {
  width: 44px;
  height: 44px;
  background: #14b8a6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.ft-logo img {
  height: 65px;
  width: 65px;
}

.ft-brand p {
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* SOCIAL */
.ft-social {
  display: flex;
  gap: 14px;
}

.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.ft-social a:hover {
  background: #14b8a6;
}

/* HEADINGS */
.ft-links h4,
.ft-services h4,
.ft-contact h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
}

/* LINKS */
.ft-links ul,
.ft-services ul {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: 14px;
}

.ft-links a {
  color: #d1e6ee;
  text-decoration: none;
  transition: 0.3s;
}

.ft-links a:hover {
  color: #14b8a6;
}

/* SERVICES (TEXT ONLY) */
.ft-services li {
  margin-bottom: 14px;
  color: #d1e6ee;
}

/* CONTACT */
.ft-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.ft-item a {
  text-decoration: none;
   color: #d1e6ee;

}
.ft-item a:hover{
  color: #14b8a6;
}
.ft-item span{
  line-height: 1.5;
}

.ft-item i {
  color: #14b8a6;
  font-size: 18px;
  margin-top: 3px;
}

/* BOTTOM BAR */
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 25px 6%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  color: #b7d6e0;
}

.ft-policy a {
  color: #b7d6e0;
  margin-left: 20px;
  text-decoration: none;
}

.ft-policy a:hover {
  color: #14b8a6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .ft-main {
    grid-template-columns: 1fr;
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ft-policy a {
    margin: 0 10px;
  }
}













.dc-contact-main {
  padding: 80px 20px;
  background: #f9fffe;
  font-family: 'Poppins', sans-serif;
}

.dc-contact-title {
  text-align: center;
  margin-bottom: 60px;
}

.dc-contact-title h1 {
  color: #14b8a6;
  font-size: 38px;
}

.dc-contact-title p {
  color: #555;
}

/* GRID */
.dc-contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

/* LEFT */
.dc-contact-left h3 {
  color: #14b8a6;
  font-size: 26px;
  margin-bottom: 10px;
}

.dc-contact-left p {
  color: #555;
  margin-bottom: 25px;
}

.dc-action-box {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.dc-action-btn {
  flex: 1;
  padding: 14px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.dc-action-btn.call {
  background: #14b8a6;
}

.dc-action-btn.whatsapp {
  background: #ff7849;
}

.dc-action-btn i {
  margin-right: 8px;
}

.dc-hours h4 {
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-hours ul {
  list-style: none;
  padding: 0;
}

.dc-hours li {
  color: #555;
  margin-bottom: 6px;
}

/* RIGHT */
.dc-contact-right {
  display: grid;
  gap: 20px;
}

.dc-info-tile {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.dc-info-tile i {
  font-size: 26px;
  color: #ff7849;
  margin-bottom: 10px;
}

.dc-info-tile h4 {
  color: #14b8a6;
  margin-bottom: 5px;
}

.dc-info-tile span {
  color: #555;
  font-size: 14px;
}

.dc-info-tile.highlight {
  background: linear-gradient(135deg, #14b8a6, #ff7849);
  color: #fff;
}

.dc-info-tile.highlight i,
.dc-info-tile.highlight h4,
.dc-info-tile.highlight span {
  color: #fff;
}

/* MAP */
.dc-contact-map {
  max-width: 1200px;
  margin: 60px auto 0;
}

.dc-contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dc-contact-main{
    padding: 40px 20px;
  }
  .dc-contact-grid {
    grid-template-columns: 1fr;
  }

  .dc-action-box {
    flex-direction: column;
  }
}











.dc-about-main {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.dc-about-header {
  text-align: center;
  margin-bottom: 60px;
}

.dc-about-header h2 {
  font-size: 36px;
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-about-header p {
  color: #555;
  font-size: 16px;
}

/* GRID */
.dc-about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* LEFT CONTENT */
.dc-about-content h3 {
  font-size: 26px;
  color: #14b8a6;
  margin-bottom: 15px;
}

.dc-about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* HIGHLIGHTS */
.dc-about-highlights {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.dc-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fffc;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #14b8a6;
}

.dc-highlight-item i {
  color: #ff7849;
  font-size: 16px;
}

/* RIGHT CARDS */
.dc-about-cards {
  display: grid;
  gap: 20px;
}

.dc-about-card {
  background: #f9fffe;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.dc-about-card i {
  font-size: 28px;
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-about-card h4 {
  color: #333;
  margin-bottom: 6px;
}

.dc-about-card p {
  color: #555;
  font-size: 14px;
}

.dc-about-card.accent {
  background: linear-gradient(135deg, #14b8a6, #ff7849);
}

.dc-about-card.accent i,
.dc-about-card.accent h4,
.dc-about-card.accent p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dc-about-main{
    padding: 40px 20px;
  }
  .dc-about-grid {
    grid-template-columns: 1fr;
  }

  .dc-about-highlights {
    gap: 12px;
  }
}














.dc-terms-main {
  padding: 90px 20px;
  background: #f9fffe;
  font-family: 'Poppins', sans-serif;
}

.dc-terms-header {
  text-align: center;
  margin-bottom: 60px;
}

.dc-terms-header h2 {
  font-size: 36px;
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-terms-header p {
  color: #555;
  font-size: 15px;
}

/* CONTENT */
.dc-terms-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.dc-terms-block {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.dc-terms-block h4 {
  color: #14b8a6;
  margin-bottom: 10px;
  font-size: 18px;
}

.dc-terms-block p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
}

.dc-terms-block.highlight {
  background: linear-gradient(135deg, #14b8a6, #ff7849);
}

.dc-terms-block.highlight h4,
.dc-terms-block.highlight p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dc-terms-main {
    padding: 40px 20px;
  }
  .dc-terms-header h2 {
    font-size: 30px;
  }

  .dc-terms-block {
    padding: 22px;
  }
}











.dc-privacy-main {
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.dc-privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.dc-privacy-header h2 {
  font-size: 36px;
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-privacy-header p {
  color: #555;
  font-size: 15px;
}

/* CONTENT */
.dc-privacy-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.dc-privacy-block {
  background: #f9fffe;
  padding: 26px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.dc-privacy-block h4 {
  color: #14b8a6;
  margin-bottom: 10px;
  font-size: 18px;
}

.dc-privacy-block p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
}

.dc-privacy-block.highlight {
  background: linear-gradient(135deg, #14b8a6, #ff7849);
}

.dc-privacy-block.highlight h4,
.dc-privacy-block.highlight p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dc-privacy-main{
    padding: 40px 20px;
  }
  .dc-privacy-header h2 {
    font-size: 30px;
  }

  .dc-privacy-block {
    padding: 22px;
  }
}












.dc-services-main {
  padding: 90px 20px;
  background: #f9fffe;
  font-family: 'Poppins', sans-serif;
}

.dc-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.dc-services-header h2 {
  font-size: 36px;
  color: #14b8a6;
  margin-bottom: 10px;
}

.dc-services-header p {
  color: #555;
  font-size: 15px;
}

/* GRID */
.dc-services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.dc-service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.dc-service-card i {
  font-size: 32px;
  color: #ff7849;
  margin-bottom: 15px;
}

.dc-service-card h4 {
  color: #14b8a6;
  margin-bottom: 10px;
  font-size: 18px;
}

.dc-service-card p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.6;
}

.dc-service-card.accent {
  background: linear-gradient(135deg, #14b8a6, #ff7849);
}

.dc-service-card.accent i,
.dc-service-card.accent h4,
.dc-service-card.accent p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.dc-services-main {
  padding: 40px 20px;
}
  .dc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dc-services-grid {
    grid-template-columns: 1fr;
  }
}














.intro-section {
  background: #F5F9FF;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Images */
.intro-images {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.img-secondary {
  width: 55%;
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Content */
.intro-tag {
  display: inline-block;
  background: #1CC7B7;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.intro-content h2 {
  font-size: 36px;
  color: #3B5EDB;
  margin-bottom: 5px;
}

.intro-content h4 {
  color: #1CC7B7;
  margin-bottom: 20px;
}

.intro-content p {
  color: #1F2937;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Education */
.education-box {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.education-box img {
  width: 70px;
  height: 70px;
}

.education-box h5 {
  margin-bottom: 10px;
  color: #3B5EDB;
}

.education-box ul {
  padding-left: 18px;
}

.education-box li {
  color: #374151;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .intro-section{
    padding: 30px 20px;
  }
  .intro-container {
    grid-template-columns: 1fr;
  }

  .img-secondary {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .intro-content h2 {
    font-size: 30px;
  }
}
