/* Premium CSS Override for a Clean, Professional Aesthetic */

/* Override Bootstrap's built-in blue with our pink brand color */
:root {
  /* Brand Colors — Matching the Pink Logo */
  --primary-color: #D4748A;       /* Logo Pink */
  --primary-dark: #BE5A71;        /* Darker Pink */
  --secondary-color: #1A2B3C;     /* Deep Navy */
  --text-dark: #2A2A2A;
  --text-light: #666666;
  --bg-light: #FDF7F8;
  --white: #ffffff;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Override Bootstrap blue variables with our pink */
  --bs-primary: #D4748A;
  --bs-primary-rgb: 212, 116, 138;
  --bs-link-color: #D4748A;
  --bs-link-hover-color: #BE5A71;
}

body {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-light);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif !important;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Base Sections */
.premium-section {
  padding: 50px 0;
  background: var(--white);
  position: relative;
}

.premium-section.bg-light {
  background: var(--bg-light);
}

.premium-heading-center {
  text-align: center;
  margin-bottom: 50px;
}

.premium-heading-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.premium-heading-center .special-text {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* Circular Service Icons (Cloudnine style) */
.premium-service-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.premium-service-circle:hover,
.premium-service-circle:focus,
.premium-service-circle:active {
  transform: translateY(-5px);
  text-decoration: none !important;
}

.premium-service-circle:hover .service-circle-title {
  color: var(--text-dark) !important;
  text-decoration: none !important;
}

.service-circle-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #8e44ad; /* Purple border similar to reference */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.premium-service-circle:hover .service-circle-icon-wrap {
  box-shadow: var(--shadow-md);
  background-color: #fcfcfc;
}

.service-circle-icon-wrap i.icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.service-circle-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
  text-decoration: none !important;
}

/* About Section */
.premium-about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.premium-about-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.premium-about-content {
  padding-left: 30px;
}

.premium-about-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.premium-about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.premium-stats-box {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-top: 20px;
}

.premium-stats-box h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 5px;
}

/* Buttons */
.premium-btn {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(233, 135, 150, 0.3);
}

.premium-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(233, 135, 150, 0.4);
}

/* Testimonials */
.premium-testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: left;
  height: 100%;
}

.premium-testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.premium-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.premium-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.premium-testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
}

.premium-testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 991px) {
  .premium-about-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* Hero Banner */
.premium-hero-banner {
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.hero-badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 600px;
}

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

/* Nishanth Style Specifics */
.nishanth-badge {
  display: inline-block;
  padding: 6px 15px;
  background-color: rgba(0, 123, 143, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.nishanth-heading {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.nishanth-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.nishanth-feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nishanth-feature-text h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.nishanth-feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 500px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ WHY CHOOSE US – Circular Layout ============ */
.why-choose-section {
  padding: 50px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}
.why-choose-section .nishanth-badge {
  background-color: rgba(212, 116, 138, 0.12);
  color: var(--primary-color);
}
.why-choose-section .nishanth-heading {
  color: var(--secondary-color);
}

.why-choose-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: nowrap;
}

.why-features-left,
.why-features-right {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.why-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  min-width: 60px;
  font-family: 'Outfit', sans-serif;
}

.why-feature-content h4 {
  color: var(--secondary-color);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-feature-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.why-center-image {
  flex-shrink: 0;
}
.why-circle-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-circle-ring:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.why-circle-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ GET IN TOUCH INFO PANEL ============ */
.get-in-touch-info {
  padding: 80px 60px;
}

/* ============ SCROLLING PHOTO GALLERY ============ */
.photo-scroll-section {
  overflow: hidden;
  padding: 0;
  background: #f4f7f9;
}

.photo-scroll-track {
  display: flex;
  gap: 0;
  animation: photoScroll 30s linear infinite;
  width: max-content;
}

.photo-scroll-section:hover .photo-scroll-track {
  animation-play-state: paused;
}

.photo-scroll-item {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.photo-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-scroll-item:hover img {
  transform: scale(1.05);
}

@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .why-choose-wrapper {
    flex-direction: column;
  }
  .why-features-left,
  .why-features-right {
    max-width: 100%;
    width: 100%;
  }
  .why-circle-ring {
    width: 240px;
    height: 240px;
  }
  .why-feature-item.text-end {
    flex-direction: row-reverse;
    text-align: left !important;
  }
  .get-in-touch-info {
    padding: 60px 30px;
  }
}

/* ============================================================
   GLOBAL BRAND COLOR OVERRIDES — Pink wins everywhere
   ============================================================ */
a { color: inherit; }
a:hover { color: var(--primary-color) !important; }

.text-primary,
.special-text,
.nishanth-badge { color: #D4748A !important; }

.bg-primary,
.premium-btn { background-color: #D4748A !important; border-color: #D4748A !important; }

.premium-btn:hover { background-color: #BE5A71 !important; border-color: #BE5A71 !important; }

.nishanth-badge {
  background-color: rgba(212, 116, 138, 0.12) !important;
  color: #D4748A !important;
}

.nishanth-feature-icon {
  background-color: #fff !important;
  color: #D4748A !important;
  border: 2px solid rgba(212,116,138,0.15) !important;
}

.nishanth-heading { color: #1A2B3C !important; }

.why-number { color: #D4748A !important; }

.why-choose-section { background-color: var(--bg-light) !important; }

/* Get In Touch Section */
.git-section {
  background-color: var(--bg-light) !important;
  padding: 40px 0 !important;
}

.git-title {
  color: var(--secondary-color) !important;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}

.git-cards {
  gap: 24px !important;
  margin-bottom: 40px !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

.git-cards > div {
  flex: 1 1 0 !important;
  min-width: 250px !important;
}

.git-card {
  border-radius: 16px !important;
  padding: 45px 35px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 100% !important;
  position: relative !important;
  overflow: hidden !important;
}

.git-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.git-card:hover::before {
  opacity: 1 !important;
}

.git-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
}

.git-card--green {
  background: #a6b194 !important;
}

.git-card--teal {
  background: #94b1b1 !important;
}

.git-card--dark {
  background: #5e6b5e !important;
}

.git-card-inner {
  position: relative !important;
  z-index: 2 !important;
}

.git-card-inner h3 {
  color: #ffffff !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.git-card-inner h3 i {
  font-size: 1.6rem !important;
  opacity: 0.9 !important;
}

.git-card-inner p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.git-card-inner a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.git-card-inner a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.git-arrow {
  position: absolute !important;
  right: 25px !important;
  bottom: 25px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 2rem !important;
  transition: all 0.3s ease !important;
  z-index: 3 !important;
}

.git-card:hover .git-arrow {
  color: #ffffff !important;
  transform: translateX(8px) translateY(-8px) !important;
}

.git-map {
  margin-top: 50px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.git-map iframe {
  width: 100% !important;
  height: 450px !important;
  border: none !important;
}

/* Force pink on circle service icons */
.service-circle-icon-wrap { border-color: #D4748A !important; }
.service-circle-icon-wrap .icon { color: #D4748A !important; }

/* Remove any leftover blue from compact.css */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus { background-color: #D4748A !important; border-color: #D4748A !important; color: #fff !important; }

/* Footer email link: force single line on mobile */
@media (max-width: 991px) {
  .footer-con .middle_portion .contact a[href^="mailto:"] {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    max-width: 100% !important;
  }
}

/* ============ STANDARD PAGE CONTENT ============ */
.site-page-content {
  padding: 40px 0;
}

.site-page-intro {
  margin-bottom: 50px;
}
.site-page-intro p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-page-block {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px;
}

.site-page-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.site-page-img-wrap:hover img {
  transform: scale(1.02);
}

.site-page-text-box h2 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.site-page-text-box p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.site-page-features-con {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border-left: 5px solid var(--primary-color);
}
.site-page-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.site-page-features li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}
.site-page-features li i {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-right: 15px;
}

.site-page-highlights {
  margin-bottom: 60px;
}
.site-page-highlight-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}
.site-page-highlight-box:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.site-page-highlight-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(212, 116, 138, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}
.site-page-highlight-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}
.site-page-highlight-box p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-page-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 50px;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.site-page-cta p {
  color: #fff;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 25px;
  font-weight: 500;
}
.site-page-cta .btn {
  margin: 0 10px;
}
.site-page-cta .primary_btn {
  background: #fff !important;
  color: var(--primary-color) !important;
  border-color: #fff !important;
}
.site-page-cta .primary_btn:hover {
  background: var(--secondary-color) !important;
  color: #fff !important;
  border-color: var(--secondary-color) !important;
}
.site-page-cta .primary_btn span {
  filter: brightness(0) saturate(100%) invert(48%) sepia(21%) saturate(996%) hue-rotate(299deg) brightness(88%) contrast(90%);
}
.site-page-cta .elementary_btn {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}
.site-page-cta .elementary_btn:hover {
  background: #fff !important;
  color: var(--primary-color) !important;
}

@media (max-width: 767px) {
  .site-page-block {
    padding: 25px;
  }
  .site-page-features-con {
    padding: 25px;
  }
  .site-page-cta {
    padding: 35px 25px;
  }
  .site-page-cta .btn {
    display: block;
    width: 100%;
    margin: 10px 0 !important;
  }
}

/* ============ CONTACT FORM UPGRADE ============ */
.book-appointment-con .contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.book-appointment-con .form-control.custom-input {
  height: 55px !important;
  border-radius: 12px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 15px 25px !important;
  font-size: 1rem !important;
  color: #333 !important;
  margin-bottom: 25px !important;
  background-color: #f9f9f9 !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

.book-appointment-con .form-control.custom-input:focus {
  border-color: var(--primary-color) !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(212, 116, 138, 0.1) !important;
  outline: none !important;
}

.book-appointment-con textarea.custom-input {
  height: auto;
  min-height: 150px;
  resize: vertical;
}

.book-appointment-con .custom-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.book-appointment-con .custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ============ PREMIUM SERVICE CARDS ============ */
.premium-service-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.premium-service-card .icon {
  color: var(--primary-color) !important;
  margin-bottom: 20px;
  display: inline-block;
  background: transparent !important;
}

.premium-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

.premium-heading-center .special-text {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.premium-heading-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Redesigned and smaller Back to Top button */
#button {
  width: 45px !important;
  height: 45px !important;
  right: 25px !important;
  bottom: 145px !important; /* Positioned above the 45px floating contacts on desktop */
  background-color: var(--primary-color) !important;
  z-index: 99999 !important;
  animation: none !important;
  -webkit-animation: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#button::after {
  font-size: 16px !important;
  line-height: 16px !important;
}

@media (max-width: 767px) {
  #button {
    right: 15px !important;
    bottom: 80px !important; /* Stacked above mobile bottom bar */
  }

  /* Professional Mobile Footer Overrides */
  .footer-con {
    text-align: left !important;
    padding-top: 40px !important;
  }
  
  .footer-con .logo-content {
    text-align: left !important;
    margin-bottom: 25px !important;
    padding-right: 0 !important;
  }
  
  .footer-con .middle_portion .footer-logo {
    margin-bottom: 15px !important;
  }
  
  .footer-con .middle_portion .links-con {
    padding-bottom: 25px !important;
  }
  
  .footer-con .middle_portion .links-con ul {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-con .middle_portion .links-con li {
    margin-bottom: 12px !important;
    list-style: none !important;
  }
  
  .footer-con .middle_portion .links-con a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
  }

  .footer-con .middle_portion .links-con a:hover {
    color: #ffffff !important;
  }
  
  /* Reset the artificial width constraint on the contact section */
  .footer-con .contact ul {
    text-align: left !important;
    margin: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-con .middle_portion .contact li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 15px !important;
    list-style: none !important;
  }
  
  .footer-con .middle_portion .contact i {
    font-size: 16px !important;
    margin-top: 4px !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    width: 20px !important;
    text-align: center !important;
  }
  
  .footer-con .middle_portion .contact a,
  .footer-con .middle_portion .contact span {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .footer-con .middle_portion .contact a:hover {
    color: #ffffff !important;
  }
  
  /* Spacing and decoration for mobile footer column headers */
  .footer-con .middle_portion .text-size-20 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25) !important;
    padding-bottom: 6px !important;
    display: inline-block !important;
  }
  
  /* Location Map */
  .footer-con .last-footer-con {
    padding-top: 10px !important;
  }
  .footer-con .last-footer-con iframe {
    width: 100% !important;
    height: 180px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  }
}

/* Contact Cards hover effect */
.premium-contact-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease !important;
  cursor: pointer;
}

.premium-contact-card:hover {
  transform: translateY(-8px) !important;
}
