@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');


:root {
  --primary-color: #0D6EFD;
  --secondary-color: #212529;
  --accent-color: #00C6FF;
  --dark-bg: #0B0F19;
  --card-bg-light: #FFFFFF;
  --card-bg-dark: #151A26;
  --text-dark: #212529;
  --text-light: #F8F9FA;
  --text-muted: #6C757D;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --gradient-primary: linear-gradient(135deg, #0D6EFD 0%, #00C6FF 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(0, 198, 255, 0.9) 100%);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(13, 110, 253, 0.12);
  --border-radius-custom: 16px;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--secondary-color);
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- Selection Color --- */
::selection {
  background-color: var(--accent-color);
  color: #FFFFFF;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F1F1F1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* --- Navigation & Header --- */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-custom.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand-custom {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary-color) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-custom span {
  color: var(--primary-color);
}

.nav-link-custom {
  font-weight: 500;
  color: var(--secondary-color) !important;
  margin: 0 10px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-color) !important;
}

/* --- Custom Buttons --- */
.btn-gradient {
  background: var(--gradient-primary);
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  transition: var(--transition-smooth);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
  color: #FFFFFF;
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* --- Section Styling --- */
.section-padding {
  padding: 100px 0;
}

.bg-light-custom {
  background-color: #F8F9FA;
}

.section-title-container {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title.text-start::after {
  left: 0;
  transform: none;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 180px 0 120px 0;
  overflow: hidden;
  z-index: 1;
}

.hero-content-col {
  position: relative;
}

@media (min-width: 992px) {
  .hero-content-col {
    margin-top: -50px;
  }
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  animation: floatShape 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(40px) scale(1.1);
  }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

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

.hero-img-backdrop {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90%;
  height: 90%;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-custom);
  z-index: -1;
  opacity: 0.15;
  transform: rotate(3deg);
  filter: blur(10px);
}

.hero-svg-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(13, 110, 253, 0.15));
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* --- Cards (Global) --- */
.card-custom {
  background-color: var(--card-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-custom);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 110, 253, 0.2);
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.card-custom:hover .card-icon-wrapper {
  background: var(--gradient-primary);
  color: #FFFFFF;
  transform: rotate(10deg);
}

.card-title-custom {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-text-custom {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* --- Why Choose Us Grid --- */
.why-icon-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 198, 255, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.why-icon-box:hover .why-icon {
  background: var(--gradient-primary);
  color: #FFFFFF;
}

.why-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Statistics Section --- */
.stats-section {
  background: var(--gradient-primary);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: -1;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* --- Testimonials --- */
.testimonial-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-custom);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.client-rating {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid rgba(13, 110, 253, 0.1);
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-role {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* --- Blog Post Card --- */
.blog-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-custom);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 10;
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
}

.blog-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.blog-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-title-custom a {
  color: var(--secondary-color);
}

.blog-title-custom a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-readmore {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-readmore:hover {
  color: var(--accent-color);
}

.blog-readmore i {
  transition: var(--transition-smooth);
}

.blog-readmore:hover i {
  transform: translateX(5px);
}

/* --- Contact CTA Banner --- */
.cta-banner {
  background: var(--gradient-primary);
  color: #FFFFFF;
  border-radius: var(--border-radius-custom);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* --- Footer --- */
.footer-section {
  background-color: var(--dark-bg);
  color: #A0AEC0;
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--primary-color);
}

.footer-brand {
  font-family: var(--font-headings);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand span {
  color: var(--accent-color);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.footer-social-btn:hover {
  background: var(--gradient-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #A0AEC0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-links-list a i {
  font-size: 0.8rem;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: #A0AEC0;
}

.footer-bottom-links a:hover {
  color: var(--accent-color);
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: -60px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  right: 30px;
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.5);
  color: #FFFFFF;
}

/* --- Inner Page Banners --- */
.page-header-banner {
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px 0;
  color: #FFFFFF;
  position: relative;
}

.about-banner {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(21, 26, 38, 0.9) 100%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.services-banner {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(21, 26, 38, 0.9) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.blog-banner {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(21, 26, 38, 0.9) 100%), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.contact-banner {
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(21, 26, 38, 0.9) 100%), url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.page-header-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.breadcrumb-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb-custom li {
  display: flex;
  align-items: center;
}

.breadcrumb-custom li::after {
  content: '/';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom li:last-child::after {
  display: none;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a:hover {
  color: var(--accent-color);
}

.breadcrumb-custom li.active {
  color: var(--accent-color);
  font-weight: 600;
}

/* --- About Page Details --- */
.mission-vision-card {
  border-radius: var(--border-radius-custom);
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.mission-vision-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 110, 253, 0.1);
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* --- Team Cards --- */
.team-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-custom);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social-links {
  display: flex;
  gap: 12px;
}

.team-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.team-social-btn:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color);
  color: #FFFFFF;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Services Detail Page List --- */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.service-features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-features-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
}

/* --- Blog Page sidebar & styling --- */
.blog-sidebar-widget {
  background-color: #F8F9FA;
  border-radius: var(--border-radius-custom);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.search-form-control {
  border-radius: 30px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-form-control:focus {
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.15);
  border-color: var(--primary-color);
}

.blog-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories-list li {
  margin-bottom: 12px;
}

.blog-categories-list a {
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.blog-categories-list a:hover {
  color: var(--primary-color);
}

.recent-post-widget-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post-widget-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-widget-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.recent-post-widget-title a {
  color: var(--secondary-color);
}

.recent-post-widget-title a:hover {
  color: var(--primary-color);
}

.recent-post-widget-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Contact Page Specifics --- */
.contact-info-box {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-custom);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-detail-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.08);
  color: var(--primary-color);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.contact-detail-text a:hover {
  color: var(--primary-color);
}

.contact-form-box {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-custom);
  padding: 50px 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-label-custom {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.form-control-custom {
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.1);
  outline: none;
}

.invalid-feedback-custom {
  color: #DC3545;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.form-control-custom.is-invalid {
  border-color: #DC3545;
}

.form-control-custom.is-invalid~.invalid-feedback-custom {
  display: block;
}

.map-container-custom {
  border-radius: var(--border-radius-custom);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.map-container-custom iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* --- Success Alert / Modal Customization --- */
.success-msg-container {
  display: none;
  background-color: #D1E7DD;
  color: #0F5132;
  border: 1px solid #BADBCC;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  align-items: center;
  gap: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .hero-section {
    padding: 150px 0 80px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img-container {
    margin-top: 50px;
  }

  .navbar-collapse {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 15px;
  }

  .nav-link-custom {
    margin: 10px 0;
  }

  .nav-link-custom::after {
    display: none;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header-title {
    font-size: 2.2rem;
  }

  .contact-form-box {
    padding: 30px 20px;
  }
}