/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: min(92%, 900px);
}

.slide-content .breadcrumb {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.arrow:hover {
  background: #ff3c2f;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider responsive */
@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .slide-content h1 { font-size: 28px; }
}

.webdev-section{
  background:#fff;
  padding: 20px 16px 28px;
}

.webdev-wrap{
  max-width: 1120px;   /* screenshot jaisa wide */
  margin: 0 auto;
}

.webdev-title{
  margin: 0 0 12px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .3px;
  color: #12125e;      /* navy */
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.1;
}

.webdev-text{
  max-width: 1040px;   /* text thoda narrow feel */
  margin: 0 auto;
}

.webdev-text p{
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.95;
  color:#111;
  text-align: left;     /* screenshot me left aligned feel */
}

.webdev-banner{
  margin-top: 30px;
}

.webdev-banner img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;     /* image flat */
}

     /* section 2 */
     /* === Content UI (screenshot-like) === */
.wp-like-content{
  padding: 40px 16px 90px; /* bottom space for floating chat */
  background: #fff;
}

.wp-like-content .content-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.page-title,
.section-title{
  font-family: Georgia, "Times New Roman", serif;
  color: #0b0b66;
  text-align: center;
  font-weight: 600;
  letter-spacing: .3px;
}

.page-title{
  font-size: clamp(28px, 4.2vw, 50px);
  margin: 6px 0 18px;
}

.section-title{
  font-size: clamp(24px, 3.6vw, 44px);
  margin: 46px 0 18px;
}

.rich-text p{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.9;
  color: #111;
  margin: 0 0 12px;
  text-align: justify;          /* screenshot jaisa */
  text-justify: inter-word;
}

/* === Floating Contact + Chat === */
.chat-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.chat-cta{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.18);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.chat-cta:hover{
  background: #f6f6f6;
}

.chat-bubble{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #1f5bff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
}

.chat-bubble i{
  color: #fff;
  font-size: 22px;
}

/* Mobile: pill hide, only bubble */
@media (max-width: 520px){
  .chat-cta{ display:none; }
  .rich-text p{ font-size: 16px; }
}

/* ===== Base ===== */
.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.serif-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-align: center;
  color: #14125f;                 /* navy like screenshot */
  letter-spacing: .3px;
  margin: 10px 0 12px;
  font-size: clamp(28px, 4.3vw, 50px);
}

/* ===== SECTION 1 ===== */
.offer-section{
  background: #fff;
  padding: 0px 0 22px;
}

.offer-strip{
  background: #00e6e6;            /* cyan bar */
  margin: 12px auto 26px;
  padding: 10px 14px;
  border-radius: 0;               /* screenshot flat strip */
}

.offer-strip p{
  margin: 0;
  text-align: center;
  color: #ff0000;                 /* red text */
  font-weight: 800;
  font-size: clamp(24px, 2.2vw, 30px);
  font-family: Arial, Helvetica, sans-serif;
}

.offer-list p{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.95;
  color: #222;
  margin: 0 0 18px;
}

.offer-list strong{
  font-weight: 800;
}

/* ===== SECTION 2 ===== */
.service-grid-section{
  background: #fff;
  padding: 18px 0 40px;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px;
  align-items: start;
  justify-items: center;
  padding-top: 10px;
}

.service-item{
  width: 100%;
  text-align: center;
}

.service-img{
  width: 100%;
  max-width: 210px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.service-img img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-item h4{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #4b3aa8;                 /* purple-ish like screenshot */
  font-size: 18px;
  line-height: 1.35;
}

/* ===== SECTION 3 ===== */
.why-section{
  background: #fff;
  padding: 24px 0 70px;
}

.why-section .para p{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.95;
  color: #222;
  margin: 0 0 18px;
  text-align: justify;
  text-justify: inter-word;
}

.red-center{
  margin: 28px 0 40px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.red-center .big{
  color: #ff0000;
  font-weight: 900;
  letter-spacing: .7px;
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
}

.red-center .small{
  margin-top: 6px;
  color: #ff0000;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 22px);
}

.bullet{
  margin: 10px 0 0;
  padding-left: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 2;
  color: #222;
}

.bullet li{
  margin: 6px 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .service-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .service-grid{ grid-template-columns: 1fr; }
  .offer-list p, .why-section .para p, .bullet{ font-size: 16px; }
}

