body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
}

/* header section */
/* ===== NAVBAR BACKGROUND ===== */
.premium-navbar {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 12px 0;
  transition: 0.3s;
}

/* ===== LOGO ===== */
.logo-text {
  font-size: 22px;
  color: #111;
}

.logo-text span {
  background: linear-gradient(45deg, #22c55e, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAV LINKS ===== */
/* ACTIVE NAV LINK */
.nav-link{
  color:#222;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

.nav-link:hover{
  color:#16a34a;
}

/* ACTIVE PAGE */
.active-link{
  color:#16a34a !important;
  font-weight:700;
}

.active-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,#16a34a,#0ea5e9);
  border-radius:50px;
}

/* ACTIVE BUTTON */
.active-link-btn{
  background:linear-gradient(90deg,#16a34a,#0ea5e9);
  color:#fff !important;
  border:none;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
  background: linear-gradient(45deg, #22c55e, #4f46e5);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(34,197,94,0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

/* Dropdown menu */
.premium-dropdown {
  border: none;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

/* Dropdown items */
.dropdown-item {
  border-radius: 10px;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #f0fdf4;
  color: #22c55e;
  transform: translateX(5px);
}

/* Smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
  }

  .nav-link {
    padding: 10px 0;
  }

  .btn-cta {
    width: 100%;
    margin-top: 10px;
  }
}

/* Hero */
.hero{
background:linear-gradient(135deg,#e0fdf4,#f0f9ff);
}

.hero-img{
animation:float 3s infinite ease-in-out;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}

/* Cards */
.card{
border-radius:20px;
background:rgba(255,255,255,0.8);
backdrop-filter:blur(10px);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* Buttons */
.btn{
border-radius:30px;
}

/* Responsive */
@media(max-width:768px){
h1{font-size:28px;}
}

/* Course Section */
/* Section */
.courses-section {
  background: #f8fafc;
}

/* Card */
.course-card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
}

/* Badge */
.course-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
}

/* Image */
.course-img {
  background: #f1f5f9;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.course-img img {
  max-height: 120px;
}

/* Content */
.course-content {
  padding: 10px 5px;
}

/* Enroll link */
.enroll-link {
  color: #22c55e;
  font-weight: 500;
  text-decoration: none;
}

.enroll-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .course-card {
    text-align: center;
  }
}

/* Community section */
/* Background */
.community-modern {
  background: linear-gradient(135deg, #f0fdf4, #f8fafc);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(45deg, #22c55e, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature card */
.feature-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.feature-card i {
  font-size: 18px;
  color: #22c55e;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Glass container */
.community-glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Avatar grid */
/* GRID FIX */
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* BOX FOR EACH ICON */
.avatar-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 15px;
  padding: 15px;
  transition: 0.3s;
}

/* ICON IMAGE */
.avatar {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* HOVER EFFECT */
.avatar-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .avatar-grid {
    gap: 12px;
  }

  .avatar {
    width: 35px;
    height: 35px;
  }
}

/* Floating cards */
.floating-card-about {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-size: 12px;
}

.floating-card-about.top {
  top: -20px;
  right: -20px;
}

.floating-card-about.bottom {
  bottom: -20px;
  left: 20px;
}

/* Responsive */
@media(max-width:768px){
  .floating-card-about {
    display: none;
  }
}

/* Mentors Section */
/* Card base */
.work-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.work-card:hover {
  transform: translateY(-6px);
}

/* Featured image */
/* ===== FEATURED IMAGE ===== */
.large-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;   /* 🔥 no cropping */
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  background: #f8f9fa;   /* optional: fills empty space */
}

/* ===== SMALL CARD ===== */
.small-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGE FIX */
.small-card img {
  width: 50%;              /* 🔥 full width */
  height: 140px;
  object-fit: cover;        /* crop nicely */
  object-position: center;  /* center focus */
  border-radius: 15px;
  display: block;
}

/* Content */
.work-content {
  padding: 15px;
}

/* Active card highlight */
.active-card {
  border: 2px solid #22c55e;
}

/* Our Project and Health Care */
/* Background gradient */
.healthcare-hero {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #22c55e, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.primary-btn {
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.secondary-btn:hover {
  background: #000;
  color: #fff;
}

/* Image wrapper */
.image-wrapper {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  position: relative;
}

/* Image animation */
.main-img {
  transition: transform 0.6s ease;
}

.image-wrapper:hover .main-img {
  transform: scale(1.05);
}

/* Floating badges */
.floating-badge-ab {
  position: absolute;
  background: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

/* Positions */
.floating-badge-ab.top {
  top: 15px;
  right: 15px;
}

.floating-badge-ab.bottom {
  bottom: 15px;
  left: 15px;
}

/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 991px) {
  .healthcare-hero {
    text-align: center;
  }

  .healthcare-hero .d-flex {
    justify-content: center;
  }
}

/* Contact Section */
/* Background */
.contact-section {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Card */
.contact-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-10px);
}

/* Image */
.contact-image {
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

.contact-card:hover img {
  transform: scale(1.1);
}

/* Content */
.contact-content {
  padding: 25px;
}

.contact-content h4 {
  margin-bottom: 10px;
}

/* Icons */
.contact-content li {
  margin-bottom: 8px;
  color: #555;
}

.contact-content i {
  margin-right: 8px;
  color: #22c55e;
}

/* Buttons */
.contact-card .btn {
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section {
    text-align: center;
  }
}

/* Partner Section */
/* Section */
.partners-section {
  background: #f8fafc;
}

/* Card */
.partner-card {
  padding: 20px;
  transition: 0.3s;
}

/* Logo */
.partner-card img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

/* Hover effect */
.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Footer Section */
.premium-footer{
  background: linear-gradient(135deg,#0f172a,#020617);
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  background:#1e293b;
  border-radius:50%;
  margin-right:8px;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  background:#22c55e;
  transform:translateY(-3px);
}

.newsletter-form input{
  border-radius:50px 0 0 50px;
  border:none;
  padding:10px;
  max-width:250px;
}

.newsletter-form button{
  border-radius:0 50px 50px 0;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
}

/* About-Us */
/* HERO */
.enterprise-hero {
  background: linear-gradient(135deg,#eef2ff,#f8fafc);
  padding: 80px 0;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
}

.hero-title span {
  color: #22c55e;
}

.hero-img-box img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* METRICS */
.metric-card {
  background:#fff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.counter {
  color:#22c55e;
  font-size:32px;
  font-weight:bold;
}

/* SERVICES */
.service-card {
  background:#fff;
  padding:30px;
  border-radius:20px;
  text-align:center;
  transition:0.3s;
}

.service-card:hover {
  transform:translateY(-8px);
}

.service-card i {
  font-size:30px;
  color:#22c55e;
  margin-bottom:10px;
}

/* TIMELINE */
.timeline {
  border-left:3px solid #22c55e;
  padding-left:20px;
}

.timeline-item {
  margin-bottom:20px;
}

/* TEAM */
.team-card img {
  width:80px;
  border-radius:50%;
  margin-bottom:10px;
}

/* CTA */
.enterprise-cta {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  border-radius:20px;
}

/* Our Work */
/* SECTION */
.ourwork-section {
  background: linear-gradient(135deg,#f8fafc,#eef2ff);
}

/* HEADER */
.section-label {
  letter-spacing: 2px;
  color: #92400e;
  font-weight: 600;
}

/* SERVICE CARDS */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 10px;
}

/* TAGS */
.tag-card {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.tag-card:hover {
  background: #22c55e;
  color: #fff;
}

/* CIRCLE VISUAL */
.circle-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(#22c55e,#3b82f6,#a855f7,#f59e0b,#22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-text {
  background: #fff;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-item {
  position: absolute;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.item1 { top: -15px; left: 50%; transform: translateX(-50%); }
.item2 { right: -30px; top: 50%; transform: translateY(-50%); }
.item3 { bottom: -15px; left: 50%; transform: translateX(-50%); }
.item4 { left: -30px; top: 50%; transform: translateY(-50%); }

/* RESPONSIVE */
@media(max-width:991px){
  .circle-wrapper{
    margin-bottom:40px;
  }
}

/* Our Project */
/* SECTION HEADER */
.projects-hero {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.section-badge {
  background: #e0edff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.section-title span {
  color: #2563eb;
}

.section-subtitle {
  max-width: 650px;
  margin: auto;
  color: #64748b;
}

/* BUTTON */
.project-btn {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.project-btn i {
  transition: 0.3s;
}

.project-btn:hover i {
  margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

/* SECTION */
/* .real-estate-section {
  background: linear-gradient(135deg,#f8fafc,#eef2ff);
  padding: 80px 0;
}

.section-block {
  margin-bottom: 80px;
} */

/* TITLE */
/* .section-title {
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #3b82f6;
  position: absolute;
  left: 0;
  bottom: -8px;
} */

/* LIST */
/* .custom-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
} */

/* GLASS CARD */
/* .glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.glass-card:hover {
  transform: translateY(-8px);
}

.glass-card img {
  border-radius: 15px;
  height: 250px;
  object-fit: cover;
  width: 100%;
} */

/* BUTTON */
/* .btn-primary {
  background: linear-gradient(135deg,#3b82f6,#6366f1);
  border: none;
  border-radius: 50px;
  padding: 10px;
}

.btn-primary:hover {
  opacity: 0.9;
} */

/* RESPONSIVE */
/* @media(max-width:991px){
  .section-title::after{
    left:50%;
    transform:translateX(-50%);
  }
  .section-title{
    text-align:center;
  }
} */

/* HERO SECTION HEIGHT */
/* .hero-video-section {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
} */

/* VIDEO FIT FIX (NO BAD CROPPING) */
/* .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  z-index: 1;
} */

/* OVERLAY */
/* .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.7)
  );
  z-index: 2;
} */

/* CONTENT CENTER FIX */
/* .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
} */

/* TEXT SIZE ADJUST (IMPORTANT for small height) */
/* .hero-title {
  font-size: 32px;
}

.hero-desc {
  font-size: 14px;
} */

/* STATS (optional: hide for cleaner look) */
/* .hero-stats {
  display: none;
}

.hero-stats h5 {
  margin: 0;
  font-weight: 700;
} */

/* MOBILE */
/* @media(max-width:991px){
  .hero-title {
    font-size: 25px;
    text-align: center;
  }

  .hero-desc,
  .hero-buttons,
  .hero-stats {
    text-align: center;
    justify-content: center;
  }
} */

/* Our Project and Abroad */
/* HERO */
.abroad-hero {
  background: linear-gradient(135deg,#f8fafc,#eef2ff);
}

.gradient-text {
  color: #16a34a;
}

/* BUTTON */
.btn-orange {
  background: #ff6b35;
  color: #fff;
  border-radius: 50px;
}

.btn-orange:hover {
  background: #e85a2a;
}

/* TAGS */
.hero-tags span {
  display: inline-block;
  margin-right: 10px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
}

/* FLOAT BADGES */
.floating-badge {
  position: absolute;
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-badge.top {
  top: 10px;
  left: 10px;
}

.floating-badge.bottom {
  bottom: 10px;
  right: 10px;
}

/* WHY */
.image-stack {
  position: relative;
}

.image-stack img {
  width: 70%;
  border-radius: 15px;
}

.img-2 {
  position: absolute;
  top: 40px;
  left: 80px;
}

/* PROCESS */
.process-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 50px;
  padding-bottom: 20px;
}

.process-step {
  min-width: 120px;
}

.process-step img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .hero-title {
    font-size: 28px;
  }
}

/* Our Project and Healthcare */
/* HERO BACKGROUND */
.healthcare-hero {
  background: linear-gradient(135deg, #f5f9ff, #eef4ff);
  position: relative;
  overflow: hidden;
}

/* BADGES */
.hero-badges span {
  background: #eaf2ff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-right: 8px;
  display: inline-block;
  color: #1e3a8a;
}

.hero-badges i {
  margin-right: 5px;
}

/* TITLE */
/* .hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
} */

/* .hero-title span {
  color: #2563eb;
} */

/* STATS */
.stats h3 {
  font-weight: 700;
  color: #2563eb;
}

/* EMERGENCY BOX */
.emergency-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.emergency-box i {
  font-size: 20px;
  color: #2563eb;
}

/* IMAGE BOX */
.hero-image-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 18px;
  color: #2563eb;
}

.floating-card.top {
  top: 20px;
  right: 20px;
}

.floating-card.bottom {
  bottom: 20px;
  left: 20px;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  /* .hero-title {
    font-size: 25px;
  } */

  .hero-image-box img {
    height: 350px;
  }
}

/* Our Project and Industrial Project */
/* BACKGROUND */
.industrial-project {
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* BADGE */
.section-badge {
  background: #e0edff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* TITLE */
.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
}

.section-title span {
  color: #2563eb;
}

/* META */
.project-meta span {
  margin-right: 15px;
  font-size: 14px;
  color: #64748b;
}

.project-meta .active {
  color: #16a34a;
  font-weight: 500;
}

/* TEXT */
.section-text {
  color: #64748b;
  line-height: 1.7;
}

/* FEATURE BOX */
.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.feature-box i {
  color: #2563eb;
  font-size: 18px;
}

/* IMAGE BOX */
.project-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* FLOATING CARD */
.floating-card-ip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-card-ip i {
  color: #2563eb;
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }

  .project-image-box img {
    height: 300px;
  }
}

/* Contact Us Page */
.premium-contact {
  background:
    radial-gradient(circle at top left, rgba(16,185,129,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.12), transparent 30%),
    #f8fbff;
  position: relative;
  overflow: hidden;
}

/* BADGE */
.contact-badge {
  background: linear-gradient(135deg, #10b981, #2563eb);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.contact-title span {
  background: linear-gradient(135deg, #10b981, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.contact-subtitle {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

/* LEFT WRAPPER */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* INFO CARD */
.contact-info-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 25px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-info-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.icon-box {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 20px;
  background: linear-gradient(135deg, #10b981, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(37,99,235,0.25);
}

/* TEXT */
.contact-info-card h5 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #64748b;
  margin: 0;
  line-height: 1.8;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

/* INPUTS */
.premium-input {
  height: 60px;
  border-radius: 16px;
  border: 1px solid #dbe4f0;
  padding-left: 20px;
  font-size: 15px;
  box-shadow: none !important;
  transition: 0.3s;
  background: rgba(255,255,255,0.85);
}

textarea.premium-input {
  height: auto;
  padding-top: 18px;
}

.premium-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1) !important;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #10b981, #2563eb);
  border: none;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(37,99,235,0.25);
}

.contact-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .contact-title {
    font-size: 34px;
  }

  .contact-form-box {
    padding: 30px;
  }

}

@media (max-width: 576px) {

  .contact-title {
    font-size: 28px;
  }

  .contact-form-box h3 {
    font-size: 28px;
  }

}

/* Industrial Page */
.industrial-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Badge */
.industry-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: #0f766e;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Title */
.industry-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.industry-title span {
    background: linear-gradient(to right, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.industry-text {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-top: 25px;
}

/* Info Boxes */
.info-box {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box small {
    color: #0ea5e9;
    font-weight: 600;
}

.info-box h6 {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

/* Buttons */
.industry-btn-primary {
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to right, #10b981, #0ea5e9);
    transition: 0.3s ease;
}

.industry-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.industry-btn-outline {
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid #0ea5e9;
    color: #0f172a;
    font-weight: 600;
    background: transparent;
    transition: 0.3s ease;
}

.industry-btn-outline:hover {
    background: linear-gradient(to right, #10b981, #0ea5e9);
    color: #fff;
    border-color: transparent;
}

/* Video Section */
.industry-video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

/* Video */
.industry-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.55),
        rgba(15, 23, 42, 0.10)
    );
    border-radius: 30px;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    width: 270px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    z-index: 2;
}

.floating-card h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(to right, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(to right, #10b981, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 38px;
    text-decoration: none;
    z-index: 2;
    transition: 0.3s ease;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {

    .industry-video {
        height: 450px;
    }
}

@media (max-width: 576px) {

    .industry-video {
        height: 320px;
    }

    .floating-card {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* Gallery */
.gallery-card {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.gallery-card img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {

    .industry-title {
        font-size: 42px;
    }

    .industry-main-image {
        height: 450px;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {

    .industry-title {
        font-size: 34px;
    }

    .industry-main-image {
        height: 350px;
    }

    .floating-card {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}

/* Health Care Page CSS */

body {
    background: #f8fafc;
    color: #0f172a;
}

/* SECTION */
.health-hero,
.department-section,
.doctor-section,
.health-cta {
    background: #f8fafc;
}

/* BADGES */
.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges span {
    padding: 8px 18px;
    border-radius: 50px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 5px 20px rgba(15,23,42,0.06);
}

/* TITLES */

.section-title {
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

/* .hero-title {
    font-size: 32px;
} */

.section-title {
    font-size: 35px;
}

/* .hero-title span,
.section-title span {
    background: linear-gradient(to right, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* TEXT */
.hero-text,
.section-text {
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
}

/* STATS */
.hero-stats,
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-stats h3,
.about-stats h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #0f172a;
}

.hero-stats p,
.about-stats p {
    color: #64748b;
    margin: 0;
}

/* BUTTONS */
.hero-btn-primary,
.doctor-btn,
.emergency-btn {
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to right, #10b981, #0ea5e9);
    transition: 0.3s ease;
}

.hero-btn-primary:hover,
.doctor-btn:hover,
.emergency-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.hero-btn-outline-dr {
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid #0ea5e9;
    color: #0f172a;
    background: transparent;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* HERO IMAGE */
.hero-image-wrapper,
.about-image-wrapper {
    position: relative;
}

.hero-image,
.about-image,
.cta-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.10);
}

/* FLOATING CARDS */
.hero-card,
.floating-mini-card {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.10);
}

.hero-card {
    top: 30px;
    right: -20px;
}

.floating-mini-card {
    top: 30px;
    right: 20px;
}

/* DEPARTMENT */
.department-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.department-card:hover {
    transform: translateY(-8px);
}

.department-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.department-content {
    padding: 30px;
}

.department-content span {
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 700;
}

.department-content h4 {
    margin-top: 15px;
    font-weight: 700;
}

.department-content p {
    color: #64748b;
    margin: 15px 0;
}

.department-content a {
    text-decoration: none;
    color: #10b981;
    font-weight: 600;
}

/* EMERGENCY */
.emergency-box-hc {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* SERVICES */
.service-image-card img {
    border-radius: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

/* =========================
   DOCTOR SECTION
========================= */

.doctor-section{
    background: linear-gradient(180deg,#f5f9ff,#edf4ff);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.section-title{
    font-size: 32px;
    font-weight: 700;
    color: #0b1f4d;
    line-height: 1.2;
}

.section-title span{
    color: #1f6bff;
}

/* =========================
   DOCTOR CARD
========================= */

.doctor-card{
    background: #fff;
    border-radius: 30px;
    padding: 35px 25px;

    height: 100%;
    min-height: 420px; /* Equal height */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(31,107,255,0.08),
        0 2px 10px rgba(0,0,0,0.04);

    transition: all .4s ease;

    position: relative;
    overflow: hidden;
}

/* Hover */
.doctor-card:hover{
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(31,107,255,0.15),
        0 8px 25px rgba(0,0,0,0.08);
}

/* Glow Effect */
.doctor-card::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(
        135deg,
        rgba(31,107,255,0.04),
        transparent,
        rgba(0,198,255,0.05)
    );
    opacity:0;
    transition:.4s;
}

.doctor-card:hover::before{
    opacity:1;
}

/* =========================
   PROFILE IMAGE
========================= */

.doctor-image{
    width: 140px;
    height: 140px;

    border-radius: 50%;
    object-fit: cover;

    border: 6px solid #fff;

    box-shadow:
        0 10px 30px rgba(31,107,255,0.18);

    margin-bottom: 25px;

    transition: .4s;
}

.doctor-card:hover .doctor-image{
    transform: scale(1.05);
}

/* =========================
   NAME
========================= */

.doctor-card h4{
    font-size: 25px;
    font-weight: 700;
    color: #08245c;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* =========================
   DESCRIPTION
========================= */

.doctor-card p{
    color: #5d6b8a;
    font-size: 15px;
    line-height: 2;

    margin-bottom: 0;

    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .section-title{
        font-size: 38px;
    }

    .doctor-card{
        min-height: 400px;
    }

    .doctor-card h4{
        font-size: 26px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size: 30px;
    }

    .doctor-card{
        padding: 30px 20px;
        min-height: auto;
    }

    .doctor-image{
        width: 120px;
        height: 120px;
    }

    .doctor-card h4{
        font-size: 24px;
    }

    .doctor-card p{
        font-size: 15px;
        line-height: 1.8;
    }
}

/* RESPONSIVE */
@media(max-width:991px){

    /* .hero-title {
        font-size: 25px;
    } */

    .section-title {
        font-size: 20px;
    }

    .hero-card,
    .floating-mini-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
    }

    .emergency-box-hc {
        text-align: center;
        justify-content: center;
    }
}

@media(max-width:576px){

    /* .hero-title {
        font-size: 20px;
    } */

    .section-title {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats,
    .about-stats {
        gap: 20px;
    }
}

/* =========================
   HERO SECTION Abroad
========================= */

.abroad-hero-section{
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;

    background:
        linear-gradient(135deg,#f4fff9 0%,#eef7ff 50%,#f8fbff 100%);
}

/* Shapes */

.hero-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.shape1{
    width: 350px;
    height: 350px;
    background: rgba(0,200,151,0.12);
    top: -100px;
    left: -100px;
}

.shape2{
    width: 300px;
    height: 300px;
    background: rgba(31,107,255,0.10);
    bottom: -100px;
    right: -100px;
}

/* Badge */

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(0,200,151,0.12);
    color: #00a86b;

    padding: 12px 22px;
    border-radius: 50px;

    font-weight: 600;
    margin-bottom: 25px;
}

/* Title */

/* .hero-title{
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #071c46;
    margin-bottom: 25px;
} */

/* .hero-title span{
    color: #1f6bff;
} */

/* Text */

.hero-text{
    font-size: 18px;
    line-height: 1.9;
    color: #5b6785;
    margin-bottom: 35px;
}

/* Buttons */

.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-btn-primary{
    background: linear-gradient(135deg,#00b978,#1f6bff);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
}

.hero-btn-outline-abr{
    border: 2px solid #1f6bff;
    color: #1f6bff;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
}

/* Features */

.hero-features{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 10px;

    color: #071c46;
    font-weight: 600;
}

.feature-item i{
    color: #00b978;
}

/* Hero Image */

.hero-image-wrapper{
    position: relative;
}

.hero-image{
    width: 100%;
    border-radius: 35px;

    box-shadow:
        0 30px 60px rgba(31,107,255,0.15);

    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/* Floating Cards */

.floating-card-abr{
    position: absolute;
    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(10px);

    border-radius: 20px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.floating-card-abr i{
    font-size: 28px;
    color: #1f6bff;
}

.floating-card-abr h6{
    margin: 0;
    font-weight: 700;
    color: #071c46;
}

.floating-card-abr p{
    margin: 0;
    color: #6d7692;
    font-size: 14px;
}

.card-one{
    top: 40px;
    left: -40px;
}

.card-two{
    bottom: 40px;
    right: -30px;
}

/* =========================
   COMMON
========================= */

.section-badge{
    display: inline-block;

    background: rgba(31,107,255,0.1);
    color: #1f6bff;

    padding: 10px 20px;
    border-radius: 50px;

    font-weight: 600;
    margin-bottom: 20px;
}

.section-heading{
    font-size: 35px;
    font-weight: 700;
    color: #071c46;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-heading span{
    color: #00b978;
}

.section-text{
    color: #5b6785;
    line-height: 2;
    font-size: 17px;
}

/* =========================
   CONSULTANCY SECTION
========================= */

.consultancy-section{
    background: #fff;
}

.consultancy-image{
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Feature Card */

.feature-card-abr{
    background: #fff;
    border-radius: 22px;
    padding: 22px;

    display: flex;
    gap: 18px;

    border: 1px solid rgba(31,107,255,0.08);

    box-shadow: 0 10px 25px rgba(31,107,255,0.05);
}

.feature-card-abr i{
    font-size: 30px;
    color: #00b978;
}

.feature-card h5{
    font-weight: 700;
    color: #071c46;
}

.feature-card-abr p{
    margin: 0;
    color: #6d7692;
}

/* =========================
   EMPLOYMENT SECTION
========================= */

.employment-section{
    background: linear-gradient(180deg,#f8fbff,#f2fff9);
}

/* Employment Card */

.employment-card{
    background: #fff;
    border-radius: 30px;
    padding: 40px;

    box-shadow: 0 20px 40px rgba(31,107,255,0.06);
}

.employment-card p{
    color: #5b6785;
    line-height: 2;
    font-size: 17px;
}

/* Job Grid */

.job-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.job-grid span{
    background: rgba(0,185,120,0.10);
    color: #00a86b;

    padding: 12px 18px;
    border-radius: 50px;

    font-weight: 600;
}

/* Image Card */

.employment-image-card{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.employment-image-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employment-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
        rgba(7,28,70,0.85),
        rgba(7,28,70,0.1));

    display: flex;
    flex-direction: column;
    justify-content: end;

    padding: 40px;
}

.employment-overlay h4{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.employment-overlay p{
    color: rgba(255,255,255,0.85);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    /* .hero-title{
        font-size: 48px;
    } */

    .section-heading{
        font-size: 30px;
    }

    .card-one,
    .card-two{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

@media(max-width:576px){

    /* .hero-title{
        font-size: 38px;
    } */

    .section-heading{
        font-size: 25px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline-abr{
        width: 100%;
    }

    .employment-card{
        padding: 30px 22px;
    }
}

/* =========================
   REAL ESTATE PAGE
========================= */

.realestate-hero{
    position: relative;
    overflow: hidden;

    padding: 50px 0 30px;
}

/* Shapes */

.hero-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.hero-circle-1{
    width: 350px;
    height: 350px;
    background: rgba(0,185,120,0.12);
    top: -100px;
    left: -100px;
}

.hero-circle-2{
    width: 320px;
    height: 320px;
    background: rgba(31,107,255,0.12);
    bottom: -120px;
    right: -120px;
}

/* Badge */

.hero-badge-rest{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(0,185,120,0.12);
    color: #00a86b;

    padding: 12px 24px;
    border-radius: 50px;

    font-weight: 600;
    margin-bottom: 25px;
}

/* Title */

.hero-title-rests{
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;

    color: #071c46;
    margin-bottom: 25px;
}

.hero-title-rests span{
    color: #1f6bff;
}

/* Description */

.hero-description{
    color: #5f6c8b;
    line-height: 2;
    font-size: 15px;
    margin-bottom: 35px;
}

/* Buttons */

.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 35px;
}

.btn-primary-hero{
    background:
    linear-gradient(135deg,#00b978,#1f6bff);

    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;

    font-weight: 600;
    border: none;
}

.btn-outline-hero{
    border: 2px solid #1f6bff;
    color: #1f6bff;

    padding: 15px 34px;
    border-radius: 50px;

    font-weight: 600;
}

/* Features */

.hero-features{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.feature-pill{
    background: #fff;

    padding: 12px 20px;
    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(31,107,255,0.08);

    font-weight: 600;
    color: #071c46;
}

.feature-pill i{
    color: #00b978;
    margin-right: 8px;
}

/* Image */

.hero-image-wrapper{
    position: relative;
}

.hero-property-image{
    width: 100%;
    border-radius: 35px;

    box-shadow:
    0 30px 60px rgba(31,107,255,0.15);

    animation: floating 4s ease-in-out infinite;
}

@keyframes floating{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

/* Floating Card */

.property-floating-card{
    position: absolute;
    bottom: -30px;
    left: 40px;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);

    border-radius: 24px;
    padding: 24px;

    width: 85%;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.10);
}

.property-price{
    font-size: 32px;
    font-weight: 700;
    color: #071c46;
}

.property-floating-card h5{
    font-weight: 600;
    margin-top: 10px;
    color: #071c46;
}

.property-info{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    margin-top: 15px;
}

.property-info span{
    color: #5f6c8b;
    font-weight: 500;
}

/* =========================
   COMMON
========================= */

.section-tag{
    display: inline-block;

    background: rgba(31,107,255,0.10);
    color: #1f6bff;

    padding: 10px 22px;
    border-radius: 50px;

    font-weight: 500;
    margin-bottom: 20px;
}

.section-heading-rs{
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;

    color: #071c46;
    margin-bottom: 25px;
}

.section-heading-rs span{
    color: #00b978;
}

.section-subtext{
    max-width: 450px;
    color: #5f6c8b;
    line-height: 2;
}

/* =========================
   ABOUT SECTION
========================= */

.about-realestate-section{
    background: #fff;
}

.mission-list{
    margin-top: 30px;
}

.mission-item{
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    font-size: 16px;
    font-weight: 600;
    color: #071c46;
}

.mission-item i{
    color: #00b978;
}

.about-btn{
    margin-top: 30px;

    background:
    linear-gradient(135deg,#00b978,#1f6bff);

    color: #fff;

    padding: 14px 30px;
    border-radius: 50px;

    font-weight: 600;
}

.about-image-grid{
    position: relative;
}

.img-main{
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.10);
}

.img-small{
    width: 220px;

    position: absolute;
    bottom: -40px;
    left: -40px;

    border-radius: 25px;
    border: 8px solid #fff;

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* =========================
   PROPERTY SECTION
========================= */

.property-section{
    background:
    linear-gradient(180deg,#f8fbff,#f3fff9);
}

.section-header{
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 60px;
    gap: 30px;
}

/* Card */

.property-card{
    background: #fff;

    border-radius: 28px;
    overflow: hidden;

    box-shadow:
    0 15px 35px rgba(31,107,255,0.08);

    transition: .4s;
}

.property-card:hover{
    transform: translateY(-10px);
}

.property-image-wrapper{
    position: relative;
    overflow: hidden;
}

.property-image{
    width: 100%;
    height: 260px;
    object-fit:contain;
    transition: .5s;
}

.property-card:hover .property-image{
    transform: scale(1.05);
}

/* Badge */

.property-badge{
    position: absolute;
    top: 20px;
    left: 20px;

    background: #00b978;
    color: #fff;

    padding: 8px 18px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
}

.property-badge.sale{
    background: #1f6bff;
}

/* Content */

.property-content{
    padding: 28px;
}

.property-content h4{
    font-size: 25px;
    font-weight: 700;
    color: #071c46;
}

.property-content p{
    color: #6b7691;
    margin-top: 12px;
}

/* Price */

.property-price-main{
    margin-top: 20px;

    font-size: 20px;
    font-weight: 600;

    color: #1f6bff;
}

.property-price-main span{
    font-size: 16px;
    color: #6b7691;
}

/* Meta */

.property-meta{
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.property-meta span{
    color: #6b7691;
    font-weight: 500;
    font-size: 14px;
}

/* Button */

.view-property-btn{
    background:
    linear-gradient(135deg,#00b978,#1f6bff);

    color: #fff;

    padding: 15px 36px;
    border-radius: 50px;

    font-weight: 600;
}

/* =========================
   SERVICES
========================= */

.services-section{
    background: #fff;
}

/* Card */

.service-card{
    background: #fff;

    border-radius: 28px;
    padding: 40px 30px;

    text-align: center;

    box-shadow:
    0 15px 35px rgba(31,107,255,0.08);

    transition: .4s;

    height: 100%;
}

.service-card:hover{
    transform: translateY(-10px);
}

/* Icon */

.digital-service-icon{
    width: 90px;
    height: 90px;

    margin: auto auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(135deg,#00b978,#1f6bff);

    color: #fff;
    font-size: 34px;

    box-shadow:
    0 15px 35px rgba(31,107,255,0.18);
}

.service-card h4{
    font-size: 25px;
    font-weight: 600;
    color: #071c46;
}

.service-card p{
    margin-top: 15px;
    color: #6b7691;
    line-height: 1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-title-rests{
        font-size: 35px;
    }

    .section-heading-rs{
        font-size: 30px;
    }

    .section-header{
        flex-direction: column;
        align-items: start;
    }

    .img-small{
        position: relative;
        bottom: auto;
        left: auto;

        margin-top: 20px;
    }

    .property-floating-card{
        position: relative;
        left: auto;
        bottom: auto;

        width: 100%;
        margin-top: 20px;
    }
}

@media(max-width:576px){

    .hero-title-rests{
        font-size: 28px;
    }

    .section-heading-rs{
        font-size: 23px;
    }

    .hero-buttons-rest{
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-outline-hero{
        width: 100%;
    }

    .property-meta{
        flex-direction: column;
    }
}

/* =========================================
   REAL ESTATE HERO SECTION
========================================= */

.realestate-hero-rest{
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,45,98,.88),
            rgba(0,110,120,.68)
        ),
        url('assets/images/realestate/hero-bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* =========================================
   OVERLAY EFFECTS
========================================= */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top left,
        rgba(0,255,170,.12),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(0,170,255,.12),
        transparent 40%);
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content-rest{
    color: #fff;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

/* BADGE */

.hero-badge-rset{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(10px);

    padding: 12px 22px;
    border-radius: 50px;

    margin-bottom: 25px;

    font-weight: 500;
    font-size: 14px;

    color: #fff;
}

/* TITLE */

.hero-title-rest{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;

    margin-bottom: 22px;

    color: #fff;
}

.hero-title-rest span{
    background: linear-gradient(90deg,#00d084,#00c6ff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */

.hero-text-rest{
    font-size: 15px;
    line-height: 1.8;

    color: rgba(255,255,255,.88);

    margin-bottom: 30px;
    max-width: 650px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons-rest{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 35px;
}

.hero-btn-primary{
    background: linear-gradient(135deg,#00c97b,#00a6ff);

    color: #fff;
    border: none;

    padding: 14px 30px;
    border-radius: 14px;

    font-weight: 600;
    font-size: 15px;

    transition: .4s;
}

.hero-btn-primary:hover{
    transform: translateY(-4px);

    color: #fff;

    box-shadow:
        0 15px 35px rgba(0,198,255,.35);
}

.hero-btn-outline{
    border: 2px solid rgba(255,255,255,.45);

    color: #fff;

    padding: 14px 30px;
    border-radius: 14px;

    font-weight: 600;
    font-size: 15px;

    transition: .4s;
}

.hero-btn-outline:hover{
    background: #fff;
    color: #0b1f4d;
}

/* =========================================
   STATS
========================================= */

.hero-stats-rest{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box{
    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);

    padding: 18px 24px;
    border-radius: 18px;

    min-width: 140px;

    transition: .4s;
}

.stat-box:hover{
    transform: translateY(-5px);

    background: rgba(255,255,255,.12);
}

.stat-box h3{
    font-size: 25px;
    font-weight: 700;

    margin-bottom: 5px;

    color: #00d084;
}

.stat-box p{
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 14px;
}

/* =========================================
   FORM CARD
========================================= */

.hero-form-card{
    background: rgba(255,255,255,.96);

    border-radius: 28px;

    padding: 30px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.18);

    backdrop-filter: blur(14px);

    position: relative;
    z-index: 2;

    animation: floatCard 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* FORM TITLE */

.hero-form-card h3{
    font-size: 25px;
    font-weight: 700;

    color: #0b1f4d;

    margin-bottom: 25px;
}

/* =========================================
   INPUTS
========================================= */

.hero-input{
    border-radius: 14px;

    border: 1px solid #d9e3f2;

    padding: 14px 18px;

    height: 56px;

    font-size: 15px;

    box-shadow: none;

    transition: .3s;
}

textarea.hero-input{
    height: auto;
    resize: none;
}

.hero-input:focus{
    border-color: #00b894;

    box-shadow:
        0 0 0 4px rgba(0,184,148,.12);
}

/* =========================================
   CHECKBOX
========================================= */

.form-check-label{
    color: #5d6b85;
    font-size: 14px;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.hero-submit-btn{
    background: linear-gradient(135deg,#00c97b,#0099ff);

    color: #fff;

    border: none;

    border-radius: 14px;

    padding: 15px;

    font-weight: 600;
    font-size: 15px;

    transition: .4s;
}

.hero-submit-btn:hover{
    transform: translateY(-4px);

    color: #fff;

    box-shadow:
        0 15px 35px rgba(0,153,255,.28);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .realestate-hero-rest{
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-content{
        padding-right: 0;
        text-align: center;

        margin-bottom: 50px;
    }

    .hero-title-rest{
        font-size: 42px;
    }

    .hero-text-rest{
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons-rest{
        justify-content: center;
    }

    .hero-stats-rest{
        justify-content: center;
    }
}

@media(max-width:576px){

    .realestate-hero-rest{
        padding: 80px 0 60px;
    }

    .hero-title-rest{
        font-size: 25px;
    }

    .hero-text-rest{
        font-size: 12px;
    }

    .hero-form-card{
        padding: 24px;
    }

    .hero-form-card h3{
        font-size: 25px;
    }

    .hero-buttons-rest{
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width: 100%;
    }

    .stat-box{
        width: 100%;
    }
}

/* =========================================
   DIGITAL MARKETING HERO SECTION
========================================= */

.dm-hero-section{
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        linear-gradient(135deg,
        #f4fffb 0%,
        #eef8ff 45%,
        #f7fcff 100%);
}

/* SOFT BACKGROUND EFFECTS */

.dm-hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0, 201, 167, 0.08);
    top:-180px;
    left:-120px;
    filter:blur(40px);
}

.dm-hero-section::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0, 119, 255, 0.08);
    right:-120px;
    bottom:-150px;
    filter:blur(40px);
}

/* =========================================
   CONTENT
========================================= */

.dm-hero-content{
    position: relative;
    z-index: 2;
}

.dm-badge{
    display:inline-block;
    background:rgba(0, 119, 255, 0.08);
    color:#0077ff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:24px;
    border:1px solid rgba(0,119,255,0.08);
}

.dm-title{
    font-size:32px;
    line-height:1.1;
    font-weight:600;
    color:#081c3a;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.dm-title span{
    background:linear-gradient(90deg,#00b894,#0077ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.dm-desc{
    font-size:19px;
    line-height:1.9;
    color:#5f6f86;
    max-width:620px;
    margin-bottom:35px;
}

/* =========================================
   BUTTONS
========================================= */

.dm-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.dm-btn-primary{
    background:linear-gradient(135deg,#00b894,#0077ff);
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,119,255,0.18);
}

.dm-btn-primary:hover{
    transform:translateY(-5px);
    color:#fff;
}

.dm-btn-secondary{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    font-weight:600;
    color:#081c3a;
    transition:.3s;
}

.dm-btn-secondary:hover{
    color:#0077ff;
}

.play-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    font-size:15px;
}

/* =========================================
   STATS
========================================= */

.dm-stat-box{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:24px 18px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.6);
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:.4s;
}

.dm-stat-box:hover{
    transform:translateY(-6px);
}

.dm-stat-box h3{
    font-size:25px;
    font-weight:600;
    margin-bottom:8px;
    background:linear-gradient(90deg,#00b894,#0077ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.dm-stat-box p{
    margin:0;
    color:#5f6f86;
    font-size:15px;
}

/* =========================================
   IMAGE AREA
========================================= */

.dm-image-wrapper{
    position:relative;
    z-index:2;
}

.dm-image-card{
    position:relative;
    border-radius:40px;
    overflow:hidden;
    background:#fff;
    padding:14px;
    box-shadow:
        0 25px 60px rgba(0,119,255,0.12),
        0 10px 25px rgba(0,0,0,0.06);
}

.dm-image-card img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:32px;
}

/* FLOATING CARD */

.dm-floating-card{
    position:absolute;
    left:-40px;
    bottom:40px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    padding:22px;
    border-radius:24px;
    width:280px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.5);
}

.dm-floating-card h5{
    font-size:26px;
    font-weight:600;
    margin-bottom:10px;
    color:#081c3a;
}

.dm-floating-card p{
    margin:0;
    color:#5f6f86;
    line-height:1.7;
}

/* GLOW EFFECT */

.dm-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    z-index:-1;
}

.dm-glow1{
    width:220px;
    height:220px;
    background:rgba(0,184,148,0.25);
    top:-40px;
    left:-60px;
}

.dm-glow2{
    width:260px;
    height:260px;
    background:rgba(0,119,255,0.18);
    bottom:-50px;
    right:-50px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .dm-title{
        font-size:60px;
    }

    .dm-image-card img{
        height:540px;
    }
}

@media(max-width:991px){

    .dm-hero-section{
        padding:80px 0;
        text-align:center;
    }

    .dm-title{
        font-size:48px;
    }

    .dm-desc{
        margin:auto auto 30px;
    }

    .dm-buttons{
        justify-content:center;
    }

    .dm-floating-card{
        left:20px;
        bottom:20px;
        width:240px;
    }

    .dm-image-card img{
        height:480px;
    }
}

@media(max-width:576px){

    .dm-title{
        font-size:38px;
        letter-spacing:-1px;
    }

    .dm-desc{
        font-size:16px;
        line-height:1.8;
    }

    .dm-btn-primary{
        width:100%;
        text-align:center;
    }

    .dm-buttons{
        flex-direction:column;
    }

    .dm-image-card{
        border-radius:28px;
    }

    .dm-image-card img{
        height:400px;
        border-radius:22px;
    }

    .dm-floating-card{
        position:relative;
        left:0;
        bottom:0;
        width:100%;
        margin-top:20px;
    }

    .dm-stat-box{
        padding:18px 10px;
    }

    .dm-stat-box h3{
        font-size:26px;
    }
}

/* =========================================
   FIRST HOPE DIGITAL MARKETING UI
========================================= */

/* =========================================
   HERO SECTION
========================================= */

.fh-digital-hero{
    padding:120px 0;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(135deg,
        #effff9 0%,
        #eef7ff 50%,
        #f7fcff 100%);
}

/* BACKGROUND GLOW */

.fh-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:-1;
}

.fh-glow1{
    width:260px;
    height:260px;
    background:rgba(0,200,151,0.22);
    top:-40px;
    left:-40px;
}

.fh-glow2{
    width:300px;
    height:300px;
    background:rgba(0,119,255,0.16);
    bottom:-80px;
    right:-60px;
}

/* HERO CONTENT */

.fh-badge,
.fh-section-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(0,119,255,0.08);
    color:#0077ff;
    font-weight:600;
    font-size:14px;
    margin-bottom:20px;
}

.fh-title{
    font-size:32px;
    line-height:1.1;
    font-weight:600;
    color:#071c3d;
    margin-bottom:28px;
}

.fh-title span{
    background:linear-gradient(90deg,#00b894,#0077ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fh-desc{
    color:#5f6f86;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* BUTTONS */

.fh-hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.fh-btn-primary{
    background:linear-gradient(135deg,#00b894,#0077ff);
    color:#fff;
    padding:15px 34px;
    border-radius:14px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,119,255,0.18);
}

.fh-btn-primary:hover{
    transform:translateY(-5px);
    color:#fff;
}

.fh-btn-outline{
    border:2px solid #0077ff;
    color:#0077ff;
    padding:15px 34px;
    border-radius:14px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
}

.fh-btn-outline:hover{
    background:#0077ff;
    color:#fff;
}

/* STATS */

.fh-stat-card{
    background:#fff;
    border-radius:24px;
    padding:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:.4s;
}

.fh-stat-card:hover{
    transform:translateY(-6px);
}

.fh-stat-card h3{
    font-size:28px;
    font-weight:600;
    margin-bottom:6px;
    background:linear-gradient(90deg,#00b894,#0077ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fh-stat-card p{
    margin:0;
    color:#5f6f86;
}

/* HERO IMAGE */

.fh-hero-image{
    position:relative;
}

.fh-hero-image img{
    width:100%;
    border-radius:40px;
    object-fit:cover;
    box-shadow:
        0 30px 60px rgba(0,119,255,0.14),
        0 10px 30px rgba(0,0,0,0.06);
}

/* =========================================
   SECTION TITLE
========================================= */

.fh-section-title{
    font-size:32px;
    font-weight:600;
    color:#071c3d;
    margin-bottom:18px;
}

.fh-section-desc{
    color:#5f6f86;
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* =========================================
   CLIENTS
========================================= */

.fh-clients-section{
    padding:90px 0;
}

.fh-client-box{
    background:#fff;
    border-radius:18px;
    padding:28px;
    font-weight:700;
    color:#071c3d;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:.4s;
}

.fh-client-box:hover{
    transform:translateY(-6px);
    background:linear-gradient(135deg,#00b894,#0077ff);
    color:#fff;
}

/* =========================================
   SERVICES
========================================= */

.fh-services-section{
    padding:110px 0;
}

.fh-service-card{
    background:#fff;
    padding:40px 35px;
    border-radius:28px;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    border:1px solid rgba(255,255,255,0.7);
}

.fh-service-card:hover{
    transform:translateY(-10px);
}

.fh-service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:linear-gradient(135deg,#00b894,#0077ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.fh-service-card h4{
    font-size:26px;
    font-weight:700;
    color:#071c3d;
    margin-bottom:18px;
}

.fh-service-card p{
    color:#5f6f86;
    line-height:1.9;
    margin-bottom:24px;
}

.fh-service-card a{
    color:#00a884;
    text-decoration:none;
    font-weight:600;
}

/* =========================================
   ABOUT
========================================= */

.fh-about-section{
    padding:110px 0;
    background:#fff;
}

.fh-about-image img{
    width:100%;
    border-radius:35px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.fh-about-content p{
    color:#5f6f86;
    line-height:1.9;
    font-size:17px;
}

.fh-feature-box{
    display:flex;
    gap:18px;
    background:#f7fbff;
    border-radius:20px;
    padding:20px;
}

.fh-feature-box i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#00b894,#0077ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.fh-feature-box h5{
    font-weight:700;
    margin-bottom:6px;
    color:#071c3d;
}

.fh-feature-box p{
    margin:0;
    font-size:14px;
}

/* =========================
   RELATED SERVICES
========================= */

.related-services{
  background:#f8fbff;
}

.section-badge{
  background:linear-gradient(90deg,#16a34a,#0ea5e9);
  color:#fff;
  padding:8px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
}

.service-card{
  background:#fff;
  padding:35px 30px;
  border-radius:24px;
  transition:0.4s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  border:1px solid rgba(0,0,0,0.05);
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.service-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
}

.service-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#16a34a;
  font-weight:600;
  margin-top:10px;
  transition:0.3s;
}

.service-btn:hover{
  gap:14px;
  color:#0ea5e9;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .fh-title{
        font-size:48px;
    }

    .fh-section-title{
        font-size:38px;
    }

    .fh-digital-hero{
        padding:80px 0;
        text-align:center;
    }

    .fh-hero-btns{
        justify-content:center;
    }
}

@media(max-width:576px){

    .fh-title{
        font-size:36px;
    }

    .fh-section-title{
        font-size:30px;
    }

    .fh-desc{
        font-size:16px;
    }

    .fh-btn-primary,
    .fh-btn-outline{
        width:100%;
        text-align:center;
    }

    .fh-hero-btns{
        flex-direction:column;
    }

    .fh-service-card{
        padding:30px 25px;
    }

    .fh-blog-card img{
        height:220px;
    }
}

/* Digital Marketing-Service Model */
.service-card-dig{
    background:#fff;
    border-radius:24px;
    padding:30px;
    height:100%;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-card-dig:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-card-dig::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00c6ff,#00d084);
}

/* .real-service-icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#00c6ff,#00d084);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
} */

.service-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.service-card-dig p{
    color:#6b7280;
    font-size:15px;
    min-height:70px;
}

.btn-service{
    background:linear-gradient(135deg,#00c6ff,#00d084);
    color:#fff;
    border:none;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-service:hover{
    color:#fff;
    transform:translateY(-2px);
}

.modal-content{
    border-radius:28px;
}

.modal-header{
    border-bottom:1px solid rgba(0,0,0,.06);
    padding:25px 30px;
}

.modal-body{
    padding:30px;
}

/* Property Details Modal */
.property-modal{
    border:none;
    border-radius:30px;
    overflow:hidden;
}

.property-modal .modal-header{
    padding:35px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
}

.real-property-badge{
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
}

.property-search .input-group{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-radius:15px;
    overflow:hidden;
}

.property-search input{
    border:none;
    height:55px;
}

.property-card-modern{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.property-card-modern:hover{
    transform:translateY(-8px);
}

.property-image{
    position:relative;
    height:250px;
    overflow:hidden;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.sale-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.price-box{
    font-size:15px;
    font-weight:600;
    color:#2563eb;
}

.enquire-btn{
    background:linear-gradient(135deg,#2563eb,#16a34a);
    border:none;
    color:#fff;
    border-radius:50px;
    padding:12px;
    font-weight:600;
}

.enquire-btn:hover{
    color:#fff;
}

/* contact advisor for real estate */
.advisor-modal{
    border:none;
    border-radius:25px;
    overflow:hidden;
}

.advisor-badge{
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
}

.premium-input{
    border-radius:12px;
    padding:14px;
    border:1px solid #e5e7eb;
}

.premium-input:focus{
    box-shadow:none;
    border-color:#16a34a;
}

.advisor-submit-btn{
    background:linear-gradient(135deg,#16a34a,#2563eb);
    border:none;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-weight:600;
}

/* ==========================================
   SELL PROPERTY MODAL
========================================== */

.sell-property-modal{
    border:none;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 25px 80px rgba(0,0,0,.15);
}

.sell-property-modal .modal-header{
    padding:35px;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #16a34a
    );
    color:#fff;
}

.sell-property-modal .modal-body{
    padding:35px;
}

.sell-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    backdrop-filter:blur(10px);
}

/* ==========================================
   FORM INPUTS
========================================== */

.premium-input{
    height:58px;
    border:1px solid #e5e7eb;
    border-radius:15px;
    padding:0 18px;
    font-size:15px;
    transition:.3s ease;
    background:#fff;
}

.premium-input:focus{
    border-color:#16a34a;
    box-shadow:0 0 0 4px rgba(22,163,74,.12);
}

textarea.premium-input{
    height:auto;
    padding:15px;
}

/* ==========================================
   FILE INPUT
========================================== */

.sell-property-modal input[type="file"]{
    border:2px dashed #d1d5db;
    border-radius:15px;
    padding:15px;
    background:#f8fafc;
    transition:.3s;
}

.sell-property-modal input[type="file"]:hover{
    border-color:#16a34a;
}

/* ==========================================
   SUBMIT BUTTON
========================================== */

.sell-submit-btn{
    background:linear-gradient(
        135deg,
        #16a34a,
        #2563eb
    );
    border:none;
    color:#fff;
    padding:16px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.4s;
}

.sell-submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,99,235,.25);
    color:#fff;
}

.sell-submit-btn:disabled{
    opacity:.85;
    cursor:not-allowed;
}

.text-white{
    color:#fff;
}

/* ==========================================
   THANK YOU MESSAGE
========================================== */

#sellPropertyMsg{
    border:none;
    border-radius:15px;
    font-weight:500;
}

/* ==========================================
   MODAL CLOSE BUTTON
========================================== */

.sell-property-modal .btn-close{
    background-color:#fff;
    opacity:1;
    padding:12px;
    border-radius:50%;
}

/* ==========================================
   LABELS
========================================== */

.sell-property-modal label{
    font-size:14px;
    font-weight:600;
    color:#334155;
}

/* ==========================================
   ANIMATION
========================================== */

.sell-property-modal{
    animation:modalFade .4s ease;
}

@keyframes modalFade{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

    .sell-property-modal .modal-body{
        padding:20px;
    }

    .sell-property-modal .modal-header{
        padding:20px;
    }

    .premium-input{
        height:52px;
    }

    .sell-submit-btn{
        padding:14px;
    }
}

/* Newletter Subscription Modal */
.newsletter-form{
    gap:10px;
    flex-wrap:wrap;
}

.newsletter-form input{
    min-width:280px;
    height:55px;
    border-radius:50px;
    padding:0 20px;
}

.newsletter-form button{
    height:55px;
    border-radius:50px;
    padding:0 30px;
    font-weight:600;
}

#newsletterMsg{
    max-width:500px;
    margin:auto;
    border-radius:15px;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
========================================== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;
}

.whatsapp-btn{
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(37,211,102,.4);
    position:relative;
    animation:whatsappPulse 2s infinite;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

.whatsapp-tooltip{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    background:#0f172a;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    white-space:nowrap;
    font-size:14px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.whatsapp-btn:hover .whatsapp-tooltip{
    opacity:1;
    visibility:visible;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:
        0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){

    .whatsapp-float{
        bottom:20px;
        right:20px;
    }

    .whatsapp-btn{
        width:60px;
        height:60px;
        font-size:28px;
    }

    .whatsapp-tooltip{
        display:none;
    }

}

/* =====================================
   WHATSAPP SCAN SIDE BUTTON
===================================== */

.whatsapp-side-wrapper{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.whatsapp-side-btn{
    background:#25D366;
    color:#fff;
    padding:18px 12px;
    border-radius:15px 0 0 15px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    transition:.3s;
}

.whatsapp-side-btn:hover{
    background:#1fa855;
}

.whatsapp-side-btn i{
    font-size:28px;
}

.whatsapp-side-btn span{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:13px;
}

/* POPUP */

.whatsapp-popup{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    width:320px;
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    display:none;
}

.whatsapp-popup.active{
    display:block;
}

.whatsapp-header{
    margin-bottom:20px;
}

.whatsapp-header i{
    font-size:45px;
    color:#25D366;
}

.whatsapp-header h5{
    margin-top:10px;
    font-weight:700;
}

.whatsapp-qr{
    max-width:220px;
    border:8px solid #f8f9fa;
    border-radius:15px;
}

.close-whatsapp{
    position:absolute;
    right:10px;
    top:10px;
    border:none;
    background:none;
    font-size:18px;
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-popup{
        width:280px;
        right:65px;
    }

}

/* Partnership Application */
.partner-modal{
border:none;
border-radius:30px;
overflow:hidden;
}

.partner-modal .modal-header{
background:linear-gradient(135deg,#0f172a,#2563eb,#16a34a);
color:#fff;
padding:35px;
}

.partner-badge{
background:rgba(255,255,255,.2);
padding:8px 20px;
border-radius:50px;
font-size:13px;
font-weight:600;
}

.partner-submit-btn{

background:linear-gradient(135deg,#16a34a,#2563eb);
border:none;
padding:16px;
border-radius:50px;
font-weight:600;
color:#fff;
transition:.3s;

}

.partner-submit-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(37,99,235,.3);

color:#fff;

}