.elementor-220 .elementor-element.elementor-element-bcdce42{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-631b945{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-220 .elementor-element.elementor-element-1134d26 > .elementor-widget-container{margin:-97px 0px -109px 0px;}.elementor-220 .elementor-element.elementor-element-717f9be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-220 .elementor-element.elementor-element-ed29789 > .elementor-widget-container{margin:-125px -125px -125px -125px;}.elementor-220 .elementor-element.elementor-element-de4dfb3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ad77a8c */.sexy-navbar {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto 24px auto;
  padding: 0 24px;
  background: rgba(20, 20, 30, 0.55);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  min-height: 72px;
  animation: fadeInSection 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 64px;
  width: 64px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(255,0,60,0.08);
  background: transparent;
  transition: transform 0.2s;
  object-fit: contain;
}

.site-name {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  text-shadow: 0 2px 12px rgba(255,0,60,0.10);
  transition: color 0.2s;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-logo-link:hover .site-name {
  color: #ff003c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: right 0.3s;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 14px;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a svg {
  display: block;
  height: 22px;
  width: 22px;
  stroke: #fff;
  transition: stroke 0.2s;
}

/* Sexy animated underline hover effect */
.nav-links a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ff003c 0%, #8e2de2 100%);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}
.nav-links a:hover::after, .nav-links a:focus::after {
  width: 70%;
}
.nav-links a:hover, .nav-links a:focus {
  color: #ff003c;
}
.nav-links a:hover svg, .nav-links a:focus svg {
  stroke: #ff003c;
}

/* Hamburger menu styles */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.nav-toggle-label span {
  display: block;
  height: 4px;
  width: 28px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Responsive styles */
@media (max-width: 900px) {
  .sexy-navbar {
    flex-wrap: wrap;
    padding: 0 8px;
    min-height: 56px;
  }
  .nav-left {
    gap: 8px;
  }
  .nav-logo {
    height: 36px;
    width: 36px;
  }
  .site-name {
    font-size: 1rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 220px;
    background: rgba(20, 20, 30, 0.97);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 90px 24px 24px 24px;
    box-shadow: -2px 0 24px rgba(31,38,135,0.18);
    border-radius: 0 0 0 32px;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 150;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
    font-size: 1.05rem;
  }
  .nav-toggle-label {
    display: flex;
    margin-left: auto;
  }
  .nav-toggle:checked ~ .nav-links {
    right: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(-40px) scale(0.98);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1134d26 */.google-featured-section {
  background: transparent;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 56px 18px 40px 18px;
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  animation: fadeInSection 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  backdrop-filter: blur(0.5px);
}
.google-featured-section h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 26px;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(255,0,60,0.13);
}
.google-featured-section .highlight {
  color: #ff003c;
  font-weight: 800;
  letter-spacing: 1px;
}
.google-featured-section .brand {
  color: #25d366;
  font-weight: 700;
}
.gf-intro, .gf-conclusion {
  font-size: 1.13rem;
  color: #eee;
  margin: 0 auto 32px auto;
  max-width: 700px;
  line-height: 1.7;
  animation: fadeInSection 1.2s 0.3s backwards;
}
.gf-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 36px auto;
  text-align: left;
}
.gf-list li {
  background: rgba(34, 34, 44, 0.85);
  padding: 18px 22px;
  border-radius: 10px;
  border-left: 4px solid #ff003c;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(255,0,60,0.04);
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: fadeInUpList 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.gf-list li strong {
  color: #ff003c;
  font-weight: 700;
}
.gf-list li:nth-child(1) { animation-delay: 0.2s; }
.gf-list li:nth-child(2) { animation-delay: 0.3s; }
.gf-list li:nth-child(3) { animation-delay: 0.4s; }
.gf-list li:nth-child(4) { animation-delay: 0.5s; }
.gf-list li:nth-child(5) { animation-delay: 0.6s; }
.gf-list li:nth-child(6) { animation-delay: 0.7s; }
.gf-list li:nth-child(7) { animation-delay: 0.8s; }
.gf-list li:nth-child(8) { animation-delay: 0.9s; }
.gf-list li:nth-child(9) { animation-delay: 1.0s; }
.gf-list li:nth-child(10) { animation-delay: 1.1s; }
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(40px) scale(0.98);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}
@keyframes fadeInUpList {
  from { opacity: 0; transform: translateY(30px) scale(0.97);}
  to { opacity: 1; transform: translateY(0) scale(1);}
}
.gf-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(37,211,102,0.18);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  animation: fadeInSection 1.2s 1.3s backwards;
}
.gf-enquire-btn .wa-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat center/contain;
  filter: drop-shadow(0 0 8px #25d366);
  animation: waPulse 1.5s infinite alternate;
}
@keyframes waPulse {
  from { filter: drop-shadow(0 0 8px #25d366);}
  to { filter: drop-shadow(0 0 18px #25d366);}
}
.gf-enquire-btn:hover, .gf-enquire-btn:focus {
  background: #128c7e;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(37,211,102,0.25);
}
.gf-enquire-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px 0 rgba(37,211,102,0.12);
}
@media (max-width: 600px) {
  .google-featured-section {
    padding: 32px 8px;
    border-radius: 12px;
  }
  .google-featured-section h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .gf-list li {
    font-size: 0.97rem;
    padding: 12px 10px;
  }
  .gf-enquire-btn {
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: 22px;
  }
}

.google-logo span {
  font-weight: 900;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 1.2em;
  letter-spacing: -2px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ed29789 */.lottie-center {
  display: flex;
  justify-content: center;
  align-items: center;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-76515ac */.sexy-footer {
  background: transparent;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 32px 0 rgba(31,38,135,0.18);
  padding: 48px 32px 0 32px;
  color: #fff;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  flex: 2 1 320px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
}
.footer-logo {
  width: 514px;
  height: 1144px;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 2px 12px rgba(255,0,60,0.08);
  object-fit: contain;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-site-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 2px;
}
.footer-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0;
  line-height: 1.5;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.footer-socials a {
  color: #ff003c;
  font-size: 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #ff003c 0%, #8e2de2 100%);
  color: #fff;
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 2px 12px #ff003c44;
}
.footer-links, .footer-contact {
  flex: 1 1 180px;
  min-width: 180px;
  margin-top: 12px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #ff003c;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li, .footer-contact li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a, .footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover {
  color: #ff003c;
  text-decoration: underline;
}
.footer-contact i {
  color: #ff003c;
  font-size: 1.1em;
  width: 20px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
  padding: 18px 0 8px 0;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.footer-scrollup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8e2de2 0%, #ff003c 100%);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  box-shadow: 0 2px 12px #8e2de244;
  transition: background 0.2s, transform 0.2s;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-scrollup:hover {
  background: linear-gradient(135deg, #ff003c 0%, #8e2de2 100%);
  transform: translateY(-50%) scale(1.1) rotate(-8deg);
}
.footer-scrollup svg {
  display: block;
  margin: auto;
  stroke: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 0.97rem;
  }
  .footer-scrollup {
    position: static;
    margin: 12px auto 0 auto;
    transform: none;
  }
}
@media (max-width: 600px) {
  .sexy-footer {
    padding: 32px 8px 0 8px;
    border-radius: 18px 18px 0 0;
  }
  .footer-logo {
    width: 44px;
    height: 44px;
  }
  .footer-site-name {
    font-size: 1.05rem;
  }
  .footer-desc {
    font-size: 0.93rem;
  }
}/* End custom CSS */
/* Start custom CSS */body.elementor-page-220 {
  background: radial-gradient(ellipse at 60% 40%, #1a0000 0%, #000 85%, #000 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background-blend-mode: overlay;
  background-color: rgba(20,20,30,0.12);

  /* Animation */
  animation: redShift 8s ease-in-out infinite alternate;
  background-size: 200% 200%;
}

@keyframes redShift {
  0% {
    background-position: 60% 40%;
    background: radial-gradient(ellipse at 60% 40%, #1a0000 0%, #000 85%, #000 100%);
  }
  100% {
    background-position: 40% 60%;
    background: radial-gradient(ellipse at 40% 60%, #220000 0%, #000 85%, #000 100%);
  }
}/* End custom CSS */