/* Google-inspired UI Theme */
@import url('https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --google-red: #EA4335;
  --google-blue: #4285F4;
  --google-yellow: #FBBC05;
  --google-green: #34A853;
  --google-bg: #ffffff;
  --google-surface: #f8f9fa;
  --google-text: #202124;
  --google-text-muted: #5f6368;
  --google-border: #dadce0;
  
  --shadow-1: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-2: 0 1px 2px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
  --shadow-3: 0 4px 6px 0 rgba(60,64,67,0.3), 0 4px 10px 2px rgba(60,64,67,0.15);
}

body {
  font-family: 'Inter', 'Product Sans', sans-serif !important;
  color: var(--google-text) !important;
  background-color: var(--google-bg) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Product Sans', 'Inter', sans-serif !important;
  font-weight: 500 !important;
  color: var(--google-text) !important;
  letter-spacing: -0.5px;
}

/* Navbar overrides */
#header {
  background: var(--google-bg) !important;
  box-shadow: var(--shadow-1);
}

#header .logo a, #header .logo-text a {
  color: var(--google-text) !important;
  font-weight: 700;
}

.navbar a, .navbar a:focus {
  color: var(--google-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--google-blue) !important;
}

.navbar .getstarted, .navbar .getstarted:focus {
  background: var(--google-blue) !important;
  color: white !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 10px 24px !important;
  box-shadow: var(--shadow-1) !important;
  transition: box-shadow 0.2s, background-color 0.2s !important;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #3367d6 !important;
  box-shadow: var(--shadow-2) !important;
}

/* Buttons */
.btn-google {
  background-color: var(--google-blue);
  color: white;
  border-radius: 24px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border: none;
  box-shadow: var(--shadow-1);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-google:hover {
  background-color: #3367d6;
  box-shadow: var(--shadow-2);
  color: white;
  text-decoration: none;
}

.btn-google-red { background-color: var(--google-red); }
.btn-google-red:hover { background-color: #c5221f; }
.btn-google-green { background-color: var(--google-green); }
.btn-google-green:hover { background-color: #1e8e3e; }
.btn-google-yellow { background-color: var(--google-yellow); color: #202124; }
.btn-google-yellow:hover { background-color: #f29900; color: #202124; }

/* Cards & Containers */
.google-card {
  background: white;
  border: 1px solid var(--google-border);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.google-card:hover {
  box-shadow: var(--shadow-2);
}

/* Hero Section */
#hero {
  background: var(--google-surface) !important;
  color: var(--google-text) !important;
  height: auto !important;
  padding-bottom: 60px;
}

#hero h1 {
  color: var(--google-text) !important;
}

#hero h2, #hero h5 {
  color: var(--google-text-muted) !important;
}

#hero .btn-get-started {
  background: var(--google-blue) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-1);
}

#hero .btn-watch-video {
  color: var(--google-text-muted) !important;
}

#hero .btn-watch-video i {
  color: var(--google-blue) !important;
}

/* Partners Strip */
.partners-strip {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--google-border);
}

.partners-title {
  font-size: 1.5rem;
  color: var(--google-text);
  font-weight: 500;
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--google-border);
  background: var(--google-surface);
  color: var(--google-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Services Section */
.new-services-section {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.services-img-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--google-border);
  box-shadow: var(--shadow-2);
}

.services-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Exit Intent Modal */
.exit-modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-3);
  padding: 20px;
}

.exit-modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.exit-modal-title {
  font-weight: 500;
  color: var(--google-red);
}

.exit-modal-body img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--google-border);
}

/* Service Icons Colors */
.icon-red i { color: var(--google-red) !important; }
.icon-green i { color: var(--google-green) !important; }
.icon-yellow i { color: var(--google-yellow) !important; }
.icon-blue i { color: var(--google-blue) !important; }

/* Fix Mobile Nav Toggle Color */
.mobile-nav-toggle { color: var(--google-text) !important; }
.mobile-nav-toggle.bi-x { color: var(--google-red) !important; }
/* Bottom Sheet Mobile Menu Override */
@media (max-width: 991px) {
  .navbar ul {
    display: block !important;
    position: fixed !important;
    bottom: -150% !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    margin: 0 !important;
    padding: 30px 15px 40px 15px !important;
    background: #ffffff !important;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2) !important;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .navbar-mobile {
    background: rgba(0, 0, 0, 0.6) !important;
  }
  
  .navbar-mobile ul {
    bottom: 0 !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .mobile-nav-toggle {
    z-index: 1001 !important;
  }
}

/* Professional Splash Screen (Overrides default #preloader) */
#preloader.custom-splash {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: opacity 0.6s ease, visibility 0.6s ease !important;
  background-color: var(--google-blue) !important; /* Fallback */
}

/* Remove the old before/after spinning elements from style.css */
#preloader.custom-splash:before,
#preloader.custom-splash:after {
  display: none !important;
}

#preloader.custom-splash .splash-content {
  background: rgba(255, 255, 255, 0.98);
  padding: 50px 70px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: splashPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

#preloader.custom-splash .splash-logo {
  max-width: 250px;
  height: auto;
  animation: splashPulse 2s infinite ease-in-out;
}

#preloader.custom-splash .splash-loader-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

#preloader.custom-splash .splash-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0,0,0,0.05);
  border-left-color: var(--splash-color, var(--google-blue));
  border-radius: 50%;
  animation: splashSpin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes splashPop {
  0% { transform: scale(0.85) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes splashPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes splashSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Contact Section Upgrades */
.contact .info {
  background: white !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
  border: 1px solid var(--google-border) !important;
}
.contact .info i {
  background: var(--google-surface) !important;
  color: var(--google-blue) !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.contact .info .email:hover i { background: var(--google-red) !important; color: white !important; }
.contact .info .address:hover i { background: var(--google-green) !important; color: white !important; }
.contact .info .phone:hover i { background: var(--google-yellow) !important; color: white !important; }
.contact .info .skype:hover i { background: var(--google-blue) !important; color: white !important; }

.contact .php-email-form {
  background: white !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
  border: 1px solid var(--google-border) !important;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 12px !important;
  border: 1px solid var(--google-border) !important;
  padding: 12px 15px !important;
  transition: 0.3s !important;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--google-blue) !important;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.15) !important;
}

.btn-whatsapp {
  background: #25D366 !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 15px 30px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3) !important;
  transition: 0.3s !important;
  width: 100% !important;
  justify-content: center !important;
  font-size: 18px !important;
}
.btn-whatsapp:hover {
  background: #128C7E !important;
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4) !important;
  transform: translateY(-2px) !important;
  color: white !important;
}
.btn-whatsapp i {
  font-size: 24px !important;
}

/* Footer Upgrades */
#footer {
  background: var(--google-text) !important;
  color: #fff !important;
  padding: 0 !important;
  margin-top: 60px !important;
}
#footer .footer-newsletter {
  background: var(--google-surface) !important;
  color: var(--google-text) !important;
  padding: 50px 0 !important;
  border-top: 1px solid var(--google-border) !important;
}
#footer .footer-newsletter form {
  border-radius: 50px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-1) !important;
  background: white !important;
  padding: 5px !important;
}
#footer .footer-newsletter input[type="email"] {
  border: none !important;
  padding: 12px 25px !important;
  border-radius: 50px 0 0 50px !important;
  width: calc(100% - 150px) !important;
}
#footer .footer-newsletter input[type="submit"] {
  background: var(--google-blue) !important;
  color: white !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 50px !important;
  width: 140px !important;
  font-weight: 600 !important;
}
#footer .footer-top {
  background: var(--google-text) !important;
  padding: 60px 0 30px 0 !important;
}
#footer .footer-top .footer-contact h2 {
  color: white !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}
#footer .footer-top .footer-contact p {
  color: #ccc !important;
  line-height: 26px !important;
}
#footer .footer-top h4 {
  color: white !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  position: relative !important;
  padding-bottom: 12px !important;
}
#footer .footer-top h4::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  height: 3px !important;
  width: 40px !important;
  background: var(--google-blue) !important;
  border-radius: 3px !important;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
#footer .footer-top .footer-links ul li a {
  color: #aaa !important;
  transition: 0.3s !important;
}
#footer .footer-top .footer-links ul li a:hover {
  color: var(--google-blue) !important;
  padding-left: 5px !important;
}
#footer .footer-top .social-links a {
  background: rgba(255,255,255,0.1) !important;
  color: white !important;
  border-radius: 50% !important;
  margin-right: 10px !important;
  transition: 0.3s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
}
#footer .footer-top .social-links a:hover {
  background: var(--google-blue) !important;
  color: white !important;
  transform: translateY(-3px) !important;
}
#footer .footer-top .social-links a.facebook:hover { background: var(--google-blue) !important; }
#footer .footer-top .social-links a.instagram:hover { background: var(--google-red) !important; }
#footer .footer-top .social-links a.twitter:hover { background: var(--google-green) !important; }
#footer .footer-top .social-links a.linkedin:hover { background: var(--google-yellow) !important; }

#footer .footer-bottom {
  background: #1a1a1a !important;
  padding: 25px 0 !important;
  color: #aaa !important;
}
/* ========================================= */
/* MASSIVE 5-SECTION REDESIGN (PREMIUM UI)   */
/* ========================================= */

/* 1. About Section Premium Redesign */
.about .content {
  background: white !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
  border: 1px solid var(--google-border) !important;
}
.about .content h3 {
  font-weight: 700 !important;
  font-size: 28px !important;
  color: var(--google-text) !important;
  margin-bottom: 20px !important;
}
.about .content p {
  color: #555 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}
.about .content ul li {
  padding-bottom: 15px !important;
  font-size: 16px !important;
  color: #444 !important;
}
.about .content ul i {
  color: var(--google-green) !important;
  font-size: 20px !important;
  padding-right: 10px !important;
}
.about .btn-learn-more {
  background: var(--google-blue) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  font-weight: 600 !important;
  transition: 0.3s !important;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3) !important;
  display: inline-block !important;
  margin-top: 15px !important;
}
.about .btn-learn-more:hover {
  background: #2b68c7 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4) !important;
  color: white !important;
}

/* 2. Services Section Lift-on-Hover Cards */
.services .icon-box {
  background: white !important;
  border-radius: 24px !important;
  padding: 40px 30px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 1px solid var(--google-border) !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
}
.services .icon-box:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}
.services .icon {
  margin-bottom: 20px !important;
  background: var(--google-surface) !important;
  min-width: 70px !important;
  min-height: 70px !important;
  padding: 15px !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 20px !important;
  transition: all 0.3s !important;
}
.services .icon i {
  font-size: 28px !important;
  color: var(--google-blue) !important;
  transition: all 0.3s !important;
  line-height: 1 !important;
}
.services .icon-box:hover .icon i {
  transform: scale(1.1) !important;
}
/* Colorful hover accents */
.services .icon-box:hover .icon-blue { background: var(--google-blue) !important; }
.services .icon-box:hover .icon-blue i { color: white !important; }
.services .icon-box:hover .icon-red { background: var(--google-red) !important; }
.services .icon-box:hover .icon-red i { color: white !important; }
.services .icon-box:hover .icon-green { background: var(--google-green) !important; }
.services .icon-box:hover .icon-green i { color: white !important; }
.services .icon-box:hover .icon-yellow { background: var(--google-yellow) !important; }
.services .icon-box:hover .icon-yellow i { color: white !important; }
.services .icon-box h4 { font-weight: 700 !important; color: var(--google-text) !important; }
.services .icon-box:hover h4 a { color: var(--google-blue) !important; }

/* 3. Testimonials Glassmorphism */
.testimonials .testimonial-item {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  position: relative !important;
  overflow: hidden !important;
  margin: 20px 10px !important;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(66, 133, 244, 0.1) !important;
  font-size: 60px !important;
  position: absolute !important;
}
.testimonials .testimonial-item .quote-icon-left { top: 20px !important; left: 20px !important; }
.testimonials .testimonial-item p {
  font-size: 16px !important;
  font-style: normal !important;
  line-height: 1.8 !important;
  color: #444 !important;
  position: relative !important;
  z-index: 1 !important;
}
.testimonials .testimonial-img {
  width: 90px !important;
  border-radius: 50% !important;
  border: 4px solid var(--google-yellow) !important;
  padding: 4px !important;
  margin-top: -15px !important;
}
.testimonials .testimonial-item h3 { color: var(--google-text) !important; font-weight: 700 !important; }

/* 4. Pricing Modern Tiered Cards */
.pricing .box {
  background: white !important;
  padding: 40px !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  border: 1px solid var(--google-border) !important;
  transition: all 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
}
.pricing .box:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.pricing .box h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--google-text) !important;
  margin-bottom: 20px !important;
}
.pricing .box h4 {
  font-size: 40px !important;
  color: var(--google-blue) !important;
  font-weight: 700 !important;
}
.pricing .box h4 sup { font-size: 20px !important; }
.pricing .box ul {
  padding: 20px 0 !important;
  list-style: none !important;
}
.pricing .box ul li {
  padding-bottom: 15px !important;
  color: #555 !important;
}
.pricing .box ul i {
  color: var(--google-green) !important;
  font-size: 18px !important;
  padding-right: 5px !important;
}
.pricing .featured {
  background: var(--google-blue) !important;
  border: none !important;
  color: white !important;
  transform: scale(1.05) !important;
  z-index: 1 !important;
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.3) !important;
}
.pricing .featured:hover {
  transform: scale(1.05) translateY(-10px) !important;
}
.pricing .featured h3, 
.pricing .featured h4, 
.pricing .featured ul li,
.pricing .featured span {
  color: white !important;
}
.pricing .featured ul i { color: var(--google-yellow) !important; }

/* 5. FAQ Sleek Expandable Cards */
.faq .faq-list {
  padding: 0 50px !important;
}
@media (max-width: 992px) {
  .faq .faq-list { padding: 0 !important; }
}
.faq .faq-list li {
  background: white !important;
  border-radius: 16px !important;
  margin-bottom: 20px !important;
  padding: 25px 30px !important;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
  border: 1px solid var(--google-border) !important;
  transition: 0.3s !important;
}
.faq .faq-list li:hover {
  border-color: var(--google-blue) !important;
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.1) !important;
}
.faq .faq-list a {
  display: block !important;
  position: relative !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--google-text) !important;
  padding-right: 30px !important;
  cursor: pointer !important;
}
.faq .faq-list a:hover { color: var(--google-blue) !important; }
.faq .faq-list p {
  padding-top: 15px !important;
  margin-bottom: 0 !important;
  color: #666 !important;
  line-height: 1.8 !important;
}
.faq .faq-list .icon-show, 
.faq .faq-list .icon-close {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  font-size: 24px !important;
  color: var(--google-blue) !important;
}
.faq .faq-list a.collapsed .icon-close { display: none !important; }
.faq .faq-list a.collapsed .icon-show { display: block !important; }
.faq .faq-list a:not(.collapsed) .icon-close { display: block !important; color: var(--google-red) !important; }
.faq .faq-list a:not(.collapsed) .icon-show { display: none !important; }
.faq .faq-list a:not(.collapsed) { color: var(--google-blue) !important; }
/* ========================================= */
/* STATS AND MODAL REDESIGN                  */
/* ========================================= */

/* Stats / Counts Redesign */
.counts .count-box {
  background: white !important;
  padding: 50px 20px 30px 20px !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
  border: 1px solid var(--google-border) !important;
  text-align: center !important;
  position: relative !important;
  margin-top: 40px !important;
  transition: all 0.3s !important;
}
.counts .count-box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}
.counts .count-box i {
  position: absolute !important;
  top: -30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 60px !important;
  background: white !important;
  color: #2f0140 !important; /* Deep purple */
  border-radius: 20px !important; 
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
  margin: 0 !important;
}
.counts .count-box span {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #111 !important;
  display: block !important;
  margin-bottom: 5px !important;
}
.counts .count-box p {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  color: #555 !important;
  font-weight: 500 !important;
}

/* Exit Modal Redesign */
.exit-modal-content {
  border-radius: 24px !important;
  border: none !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
  overflow: hidden !important;
  background: #fdfdfd !important;
}
.exit-modal-header {
  border-bottom: none !important;
  padding: 30px 40px 10px 40px !important;
  justify-content: center !important;
  position: relative !important;
}
.exit-modal-title {
  font-weight: 800 !important;
  font-size: 28px !important;
  color: var(--google-text) !important;
}
.exit-modal-header .btn-close {
  position: absolute !important;
  right: 30px !important;
  top: 30px !important;
  background-size: 15px !important;
  opacity: 0.5 !important;
}
.exit-modal-body {
  padding: 0 40px 40px 40px !important;
}
.exit-modal-body p {
  font-size: 20px !important;
  color: #555 !important;
  margin-bottom: 25px !important;
}
.exit-modal-body img {
  border-radius: 20px !important;
  width: 100% !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
  margin-bottom: 35px !important;
  border: 1px solid var(--google-border) !important;
}
.btn-google-red {
  background: var(--google-red) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 15px 45px !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  display: inline-block !important;
  transition: all 0.3s !important;
  box-shadow: 0 10px 25px rgba(234, 67, 53, 0.4) !important;
  text-decoration: none !important;
}
.btn-google-red:hover {
  background: #d33828 !important;
  color: white !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(234, 67, 53, 0.5) !important;
}
