* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BUBBLE CALL BUTTON */
.bubble-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E9762B, #ffb066);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  z-index: 999;
  animation: floatBubble 2s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble-call-button:hover {
  transform: scale(1.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* BUBBLE POPUP */
.bubble-popup {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 220px;
  height: 0;
  overflow: hidden;
  border-radius: 50% / 50%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
}

.bubble-popup.active {
  height: 150px;
  width: 220px;
  border-radius: 20px;
  opacity: 1;
  pointer-events: auto;
}

.bubble-content {
  text-align: center;
  padding: 15px;
}

.bubble-content h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #E9762B;
}

.bubble-content p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.popup-btn {
  display: inline-block;
  background: linear-gradient(135deg, #E9762B, #cf5f1f);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(233,118,43,0.5);
}


/* TOP NAVBAR */
.top-navbar {
  background: #E9762B;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  font-size: 16px;
  font-family: "Geom", sans-serif;
}

.top-navbar a {
  color: yellow;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
    /* Heartbeat animation */
  display: inline-block;
  animation: heartbeat 2s infinite;
}
/* HEARTBEAT KEYFRAMES */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.15);
  }
}
/* BANNER */
.banner-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  z-index: 1;
}

/* LOGO NAVBAR */
.logo-navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
}

/* FLEX */
.logo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px ;
}

/* LOGO */
.logo-navbar img {
 width: 12vh;
}

/* POINTS */
.points ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.points ul li,
.points ul span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  font-family: "Geom", sans-serif;
}

/* VIDEO */
.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT */
.banner-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
 width: 50%;
}

.banner-content h1 {
  font-size: 4rem;
  font-family: "GFS Didot", serif;
}

.banner-content h1 span{
  color:#E9762B;
}

/* SECTION */
.split-services {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 5;
}

/* MAIN FLEX */
.split-wrapper {
  display: flex;
  height: 100%;
}

/* LEFT CARD */
.left-card {
  flex: 1;
}

/* RIGHT STACK */
.right-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* CARD COMMON */
.split-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* RIGHT CARDS HEIGHT */
.right-stack .split-card {
  height: 50%;
}

/* IMAGE */
.split-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.split-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT */
.split-content {
  position: absolute;
  bottom: 10%;
  left: 8%;
  z-index: 2;
  color: #fff;
  max-width: 75%;
}

.split-content h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-family: "GFS Didot", serif;
}

.split-content p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Geom", sans-serif;
}


.cta{
  width: 100%;
  padding: 20px;
  margin-top: 5%;
  text-align: center;
}

.cta .title h1{
  font-size: 50px;
   font-family: "Geom", sans-serif;
}

.cta .btn{
  /* background: red; */
  width: 40%;
}

.cta .btn button  {
 border:1px solid  #E9762B;
 border-radius: 5px;
 padding: 15px;
 width: 100%;
 background: white;
 margin-top: 20px;
}

.cta .btn button a{
  color: #E9762B;
  text-decoration: none;
  font-size: 25px;
   font-family: "Geom", sans-serif;
    font-weight: 600;
}

.cta .btn button:hover{
  background: #E9762B;
}

.cta .btn button:hover a{
  color: white;
}

.cta .sub-title{
  margin-top: 20px;
}

.cta .sub-title h1{
  font-size: 50px;
   font-family: "Geom", sans-serif;
}

.cta .sub-title h1 span a{
  color: black;
}


/* SECTION BACKGROUND */
.services-section {
  margin-top: 5%;
  padding: 100px 20px;
  background: linear-gradient(135deg, #E9762B, #cf5f1f);
  color: #fff;
}

/* HEADING */
.services-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-heading h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: "GFS Didot", serif;
}

.services-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: "Geom", sans-serif;
  color: #fff;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* HOVER EFFECT */
.service-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
}

.contact-section {
  padding: 100px 20px;
  background: #fff;
  color: #333;
}

.contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.contact-heading h2 {
  font-size: 2.8rem;
  font-family: "GFS Didot", serif;
  margin-bottom: 15px;
}

.contact-heading p {
  font-size: 1.1rem;
  color: #555;
  font-family: "Geom", sans-serif;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: "Geom", sans-serif;
}

.contact-form .form-row textarea {
  resize: none;
}

.submit-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #E9762B, #cf5f1f);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #cf5f1f, #E9762B);
  transform: translateY(-3px);
}
/* FORM INPUT / TEXTAREA EFFECT */
.contact-form .form-row input,
.contact-form .form-row textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: "Geom", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

/* HOVER EFFECT */
.contact-form .form-row input:hover,
.contact-form .form-row textarea:hover {
  border-color: #E9762B;
  box-shadow: 0 5px 15px rgba(233, 118, 43, 0.3);
}

/* FOCUS EFFECT */
.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
  border-color: #E9762B;
  box-shadow: 0 0 10px rgba(233, 118, 43, 0.5);
  outline: none;
  background: #fffaf0; /* light subtle background */
}

/* BUTTON HOVER */
.submit-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, #E9762B, #cf5f1f);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #cf5f1f, #E9762B);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(233, 118, 43, 0.4);
}


.why-choose-us {
  padding: 120px 20px;
  background: linear-gradient(135deg, #E9762B, #ffb066);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-heading {
  text-align: center;
  margin-bottom: 60px;
}

.why-heading h2 {
  font-size: 3rem;
  font-family: "GFS Didot", serif;
  margin-bottom: 15px;
}

.why-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* FLEX CONTAINER */
.why-content-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

/* LEFT FLOATING CARDS */
.why-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-card {
  background: #fff;
  color: #333;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transform: rotate(-1deg);
  transition: all 0.4s ease;
  position: relative;
}

.why-card:nth-child(2) {
  transform: rotate(1deg);
}

.why-card:nth-child(3) {
  transform: rotate(-2deg);
}

.why-card:nth-child(4) {
  transform: rotate(1deg);
}

.why-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.why-card i {
  font-size: 2rem;
  color: #E9762B;
  margin-bottom: 10px;
}

.why-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* RIGHT IMAGE */
.why-image {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(73, 59, 51, 0.271); 
  z-index: 1;
} */

.site-footer {
  background: #222;
  color: #fff;
  padding: 80px 20px 40px;
  font-family: "Geom", sans-serif;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-about, .footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 220px;
}

.footer-about img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #E9762B;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #E9762B;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact p a{
  color: white;
  text-decoration: none;
}

.footer-contact i {
  color: #E9762B;
  margin-right: 8px;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #E9762B;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  margin-top: 40px;
}


.areas-god {
  position: relative;
  padding: 50px 20px;
  background:
    linear-gradient(135deg, #E9762B 0%, #cf5f1f 45%, #1c1c1c 100%);
  overflow: hidden;
  color: #fff;
  margin-top: 5%;
}

/* SOFT PATTERN LAYER */
.areas-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 45%);
  z-index: 0;
}

/* HEADER */
.areas-header {
  position: relative;
  max-width: 800px;
  margin-bottom: 90px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 30px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

.areas-header h2 {
  font-size: 4rem;
  font-family: "GFS Didot", serif;
  margin-bottom: 20px;
}

.areas-header p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 650px;
  font-family: "Geom", sans-serif;
}

/* GRID */
.areas-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  z-index: 1;
}

/* CARD */
.area-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  font-family: "Geom", sans-serif;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.45s ease;
  overflow: hidden;
}

/* GLOW GRADIENT */
.area-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
}

/* HOVER MAGIC */
.area-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.area-card:hover::before {
  transform: rotate(25deg) translateX(100%);
}
