/* ---------- TOP BAR ---------- */
.topbar{
    background:#f2f2f2;
    color:#111;
    padding:8px 0;
    font-size:17px;
}
.topbar i{margin-right:6px}
.topbar a{    color:#111; font-weight: 600;}
/* ---------- NAVBAR ---------- */
.navbar{
    background:#fff !important;
    border-bottom:1px solid #ddd;
}
.navbar-nav .nav-link{
    font-size:16px;
    color:#222 !important;
    font-weight:500;
}

/* ---------- DESKTOP HOVER DROPDOWN ---------- */
@media(min-width:992px){
    .dropdown:hover .dropdown-menu{
        display:block !important;
        margin-top:0;
    }
}

/* ---------- MOBILE SLIDE RIGHT MENU ---------- */
.offcanvas-menu{
    position:fixed;
    top:0;
    right:-360px;
    height:100vh;
    width:360px;
    background:#fff;
    padding:20px;
    box-shadow:-2px 0 10px rgba(0,0,0,0.2);
    transition:0.3s;
    z-index:9999;
}
.offcanvas-menu.open{
    right:0;
}
.close-menu{
    font-size:26px;
    text-align:right;
    cursor:pointer;
    margin-bottom:20px;
}

/* ---------- MOBILE DROPDOWN ---------- */
.mobile-dd .dropdown-menu{
    display:none;
    position:static !important;
    float:none;
}
.mobile-dd.open .dropdown-menu{
    display:block !important;
}



.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #0079b8;
    font-weight: 500;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #333;
}





/* CONTACT SECTION */
.contact-heading {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}
.contact-heading .sub {
    font-size: 18px;
    font-weight: 500;
    color: #777;
}

/* CONTACT BOX */
.contact-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 22px;
    color: #0079b8;
    width: 25px;
    margin-top: 5px;
}

.contact-link {
    font-size: 16px;
    color: #0079b8;
    font-weight: 500;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* FORM BOX */
.form-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.form-heading {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* FORM FIELDS */
.form-control {
    height: 45px;
    font-size: 16px;
}

textarea.form-control {
    height: auto;
}

/* BUTTONS */
.btn-primary, .btn-success {
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}




.footer {
    background: #111;
    color: #ccc;
    font-size: 15px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-text {
    color: #fff;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-link {
    color: #fff;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-social a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    transition: .3s;
}

.footer-social a:hover {
    color: #0079b8;
}

.footer-line {
    border-top: 1px solid #444;
    margin-top: 20px;
}


.carousel-item img {
    width: 100%;
    height: 520px; /* Adjust as needed */
    object-fit: cover;
}








.clean-section {
    background: #ffffff;
}

.clean-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}
.clean-title span {
    color: #0079b8;
}

/* VIDEO */
.clean-video-wrapper {
    text-align: center;
}
.clean-video {
    width: 100%;
    max-width: 100%;
    height: 380px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
}

/* TEXT */
.clean-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

/* BUTTON */
.clean-btn {
    display: inline-block;
    background: #0079b8;
    padding: 10px 24px;
    color: #fff !important;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
    text-decoration: none;
}
.clean-btn:hover {
    background: #0079b8;
}

@media(max-width:768px){
    .clean-title { font-size: 26px; }
    .clean-video { height: 220px; }
}












.prod{background:;}



.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 12px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.product-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}














.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 125px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* WhatsApp Button */
.float-whatsapp {
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: .3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5d; text-decoration: none; color:#fff;
} 

/* Call Button */
.float-call {
    width: 52px;
    height: 52px;
    background: #0079b8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: .3s;
}

.float-call:hover {
    transform: scale(1.1);
    background: #0079b8; text-decoration: none; color:#fff;
}

/* Mobile Adjust */
@media(max-width: 576px){
    .floating-buttons {
       
    }
}




.about-header h1 {
    padding: 25px 0;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.about-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tagline {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.section-heading {
    font-size: 22px;
    margin-top: 25px;
    font-weight: 700;
    color: #222;
}

/* UL STYLING */
.styled-list li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

/* RIGHT PANEL */
.side-panel {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.side-panel h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.product-links li {
    padding: 6px 0;
}

.product-links li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}
.product-links li a:hover {
    text-decoration: underline;
}

/* LOGO SCROLLER */
.logo-scroller .scroller {
    overflow: hidden;
}

.scroll-track {
    display: flex;
    gap: 35px;
    animation: slide 25s linear infinite;
}

.scroll-track img {

    filter: brightness(0.95);
    transition: .2s;
}

.scroll-track img:hover {
    transform: scale(1.08);
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media(max-width:768px){
    .about-main-title { font-size: 24px; }
}




.robot-premium-section {
    padding: 50px 0;
    font-family: 'Segoe UI', sans-serif;
}

.heading-wrap h1 {
    font-size: 36px;
    font-weight: 600;
}

.subtitle {
    font-size: 22px;
    color: #444;
}

.tagline {
    background: #eef6ff;
    padding: 10px 20px;
    border-left: 4px solid #007bff;
    margin: 15px 0;
    border-radius: 6px;
}

.intro-box {
    background: #f7f9fb;
    border: 1px solid #e4e9ef;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* STAT CARDS */
.stat-boxes {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e6f1;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stat-card h2 {
    font-size: 32px;
    font-weight: 600;

}


/* FEATURE GRID */
.feature-section { margin-bottom: 40px; }
.section-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-grid {
    display: flex;
    gap: 20px;
}
.feature-card {
    flex: 1;
    background: #f9fbff;
    border: 1px solid #dce6ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.feature-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}


/* APPLICATIONS */
.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.app-card {
    padding: 20px;
    background: #f4f6fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
}


/* HIGHLIGHT ROI */
.highlight-box {
    background: #fff7df;
    padding: 25px;
    border-radius: 10px;
    border-left: 6px solid #ff9800;
    margin: 40px 0;
}


/* TESTIMONIALS */
.testimonial-grid {
    display: flex;
    gap: 20px;
}
.testimonial-box {
    flex: 1;
    background: #fef2e7;
    padding: 20px;
    border-left: 5px solid #ff9800;
    border-radius: 10px;
}


/* BULLETS & TECH BOX */
.bullet-box, .tech-box {
    background: #f7f9fb;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e4e9ef;
    margin: 20px 0;
}










.dynamic-section {
    padding: 50px 0;
    font-family: "Segoe UI", sans-serif;
}

.main-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.main-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.info-highlight {
    background: #f5faff;
    border-left: 4px solid #0d6efd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.cta-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}


/* RIGHT PANEL */
.product-panel {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-panel h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-list li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

/* Black Arrow Icon */
.product-list li::before {
    content: "\f105";      /* FontAwesome Arrow */
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
    color: #0079b8;           /* Black icon */
}

/* Link Style */
.product-list li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.product-list li a:hover {
    color: #0d6efd;
    text-decoration: underline;
}
.border{padding:20px;}

/* Reduce extra space inside the panel */
.product-list{
    padding: 18px !important;
    margin-left: 0 !important;
}





.gallery-section {
    padding: 40px 0;
}

.gallery-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
    color: #222;
}

.gallery-grid {
    row-gap: 25px;
}

.gallery-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.gallery-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* Hover effect */
.gallery-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.20);
}

.gallery-box:hover img {
    transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .gallery-box img {
        height: 200px;
    }
}







/* HERO BACKGROUND */
.hero-collage {
    padding: 70px 0;
    background: linear-gradient(135deg, #e9f1ff, #f6f9ff);
}

/* TEXT AREA */
.hero-text h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #0079b8;
}

.hero-text p {
    margin-top: 15px;
    font-size: 17px;
    color: #333;
}

.highlight-box {
    margin-top: 20px;
    display: inline-block;
    padding: 8px 18px;
    background: #0079b8;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
}

/* COLLAGE IMAGES */
.hero-images {
    position: relative;
    width: 100%;
}

/* Big Main Image */
.img-main {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.img-main img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

/* Main Image Tag */
.img-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* SMALL IMAGES */
.img-small {
    position: absolute;
    width: 150px;
    height: 120px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.17);
}

.img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TOP SMALL IMAGE */
.img-1 {
    top: -20px;
    right: -10px;
}

/* BOTTOM SMALL IMAGE */
.img-2 {
    bottom: -20px;
    right: 0;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .img-small{
        width: 110px;
        height: 90px;
    }
    .hero-text h1{
        font-size: 30px;
    }
}



#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #c98c17;
    color: #fff;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #0079b8;
    transform: translateY(-4px);
}



/* Title */
.gallery-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Gallery Grid */
.logo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.logo-gallery img {
    width: 100%;
    height: 200px;          /* BIGGER HEIGHT */
    object-fit: cover;
    cursor: pointer;
    border-radius: 12px;
    transition: .3s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    border: 1px solid #ddd;
}

.logo-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Lightbox Popup */
#lightboxOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightboxOverlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}



















/*********home page*********/

/* Background with premium gradient */
.hero-pro {
    padding: 140px 0;
    background: linear-gradient(135deg, #1a1e26 0%, #0f1217 50%, #1b1e24 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Left text */
.hp-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.hp-sub {
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    color: #d7d7d7;
}

/* Main image */
.hp-img {
    width: 85%;
    max-width: 430px;
    z-index: 5;
    position: relative;
    filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.5));
}

/* Floating premium shapes */
.pro-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.6;
    animation: float 7s ease-in-out infinite alternate;
}

/* Shape colors */
.s1 {
    width: 200px;
    height: 200px;
    background: rgba(255, 80, 50, 0.45);
    top: 10%;
    right: 0%;
}

.s2 {
    width: 260px;
    height: 260px;
    background: rgba(255, 150, 0, 0.35);
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

.s3 {
    width: 140px;
    height: 140px;
    background: rgba(255, 40, 100, 0.35);
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-35px) translateX(20px); }
}



















.hero-conveyor {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 90px 0;
  color: #fff;
  overflow: hidden;
}

/* LAYOUT */
.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}

.hero-content h1 span {
  display: block;
  color: #38bdf8;
}

.hero-content p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;

  max-width: 560px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT VISUAL */
.hero-visual {
  flex: 1;
  position: relative;
  height: 420px;
}

.image-card {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

/* Replace images */
.img-one {
  width: 260px;
  height: 320px;
  background-image: url("../images/home/conveyor.jpg");
  top: 50px;
  left: 20px;
}

.img-two {
  width: 220px;
  height: 260px;
  background-image: url("../images/home/conveyor1.jpg");
  top: 0;
  right: 20px;
}

.img-three {
  width: 200px;
  height: 240px;
  background-image: url("../images/home/conveyor2.jpg");
  bottom: 0;
  left: 160px;
}












.trust-bar {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trust-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item i {
  color: #38bdf8;
  font-size: 18px;
}

/* Tablet */
@media (max-width: 991px) {
  .trust-inner {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .trust-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .trust-item {
    font-size: 16px;
  }
}













.persona-section {
  padding: 120px 0;
  background: #f8fafc;
  font-family: 'Inter', system-ui;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.persona-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.persona-head h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #0079b8, #0079b8);
  -webkit-background-clip: text;
  color: transparent;
}

.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.persona-tab {
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
}

.persona-tab.active {
  background: #0079b8;
  color: #fff;
}

/* TEXT */
.persona-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.persona-pane {
  display: none;
}

.persona-pane.active {
  display: block;
}

.lead {
  font-size: 17.5px;
  line-height: 1.9;
  color: #334155;
}

.emphasis {
  background: #eef2ff;
  padding: 16px 20px;
  border-left: 4px solid #0079b8;
  border-radius: 12px;
  margin: 20px 0;
}

/* WHAT YOU GET */
.wyg {
  margin-top: 30px;
}

.wyg h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wyg-card {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.wyg-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.trusted-box {
  margin-top: 26px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #f1f5ff, #fff);
  border-radius: 16px;
  font-size: 14.5px;
}

/* IMAGE */
.persona-image {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.persona-image img {
  width: 100%;
  max-width: 820px;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
  display: none;
}

.persona-image img.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .wyg-grid {
    grid-template-columns: 1fr;
  }
}















.rw-premium-diff {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-premium-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-premium-head {

  margin-bottom: 50px;
}

.rw-premium-head h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rw-premium-head h2 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #0079b8;
  margin-top: 10px;
}

.rw-premium-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-top: 18px;
}

.rw-emphasis {
  margin-top: 28px;
  padding: 22px 26px;
  background: #eef2ff;
  border-left: 5px solid #0079b8;
  border-radius: 16px;
}

.rw-line {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  align-items: start; /* 🔥 MAIN FIX */
}


.rw-line.highlight {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
  border-radius: 28px;
  padding: 90px 60px;
  margin: 40px 0;
}

.rw-left {
  max-width: 420px;
  margin-bottom: 40px;
}

.rw-count {
  font-size: 16px;
  font-weight: 800;
  color: #0079b8;
}

.rw-left h3 {
  font-size: 32px;
  margin-top: 10px;
}

/* RIGHT */
.rw-right {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.rw-line.alt .rw-right {
  grid-template-columns: 0.9fr 1.3fr;
}

.rw-line.alt .rw-image {
  order: -1;
}

/* TEXT */
.rw-text p,
.rw-text li {
  font-size: 17px;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 16px;
}

.rw-text ul {
  padding-left: 18px;
}

.rw-save {
  font-size: 18px;
  font-weight: 600;
  color: #020617;
}

.rw-strong {
  font-weight: 600;
  color: #020617;
}

/* IMAGE */
.rw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-right {
    grid-template-columns: 1fr;
  }

  .rw-line.alt .rw-image {
    order: 0;
  }

  .rw-line.highlight {
    padding: 60px 30px;
  }

  .rw-premium-head h2 {
    font-size: 36px;
  }
}








.rw-social-proof {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-sp-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-sp-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.rw-sp-head h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.rw-sp-head p {
  font-size: 18px;
  color: #475569;
  margin-top: 16px;
}

/* GRID */
.rw-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.rw-video-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.rw-video-card:hover {
  transform: translateY(-6px);
}

/* VIDEO */
.rw-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2ff;
}

.rw-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* TEXT */
.rw-quote {
  font-size: 16.5px;
  line-height: 1.8;
  color: #334155;
  margin-top: 18px;
}

.rw-name {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: #020617;
}

.rw-brand {
  font-size: 17px;
  color: #0b6ea2;
}

/* CTA */
.rw-sp-cta {
  text-align: center;
  margin-top: 70px;
}

.rw-sp-cta a {
  font-size: 18px;
  font-weight: 600;
  color: #0b6ea2;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-video-grid {
    grid-template-columns: 1fr;
  }

  .rw-sp-head h2 {
    font-size: 32px;
  }
}








.rw-products {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-products-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-products-head {
  text-align: center;
  margin-bottom: 80px;
}

.rw-products-head h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* GRID */
.rw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.rw-product-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 34px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.rw-product-card.highlight {
  border: 2px solid #0079b8;
  transform: translateY(-10px);
}

/* TEXT */
.rw-product-card h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.rw-price {
  font-size: 16px;
  font-weight: 600;
  color: #0079b8;
  margin-bottom: 18px;
}

.rw-desc {
  font-size: 16.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 26px;
}

.rw-product-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #020617;
}

.rw-product-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.rw-product-card ul li {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: #475569;
}

.features li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0079b8;
  font-weight: 700;
}

/* BUTTON */
.rw-btn {
  margin-top: auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

.rw-btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, #0079b8, #4f46e5);
  padding: 16px 22px;
  border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-product-grid {
    grid-template-columns: 1fr;
  }

  .rw-product-card.highlight {
    transform: none;
  }

  .rw-products-head h2 {
    font-size: 34px;
  }
}














.rw-trust-highlight {
  padding: 120px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-th-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-th-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.rw-th-head h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rw-th-head h2 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #0079b8;
  margin-top: 10px;
}

/* BADGES */
.rw-th-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 90px;
}

.rw-badge {
  background: #ffffff;
  border-radius: 999px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(99,102,241,0.15);
}

.rw-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #4f46e5;
}

.rw-badge span {
  font-size: 16px;
  color: #475569;
  margin-top: 6px;
  display: block;
}

/* AWARD */
.rw-th-award {
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 36px 40px;
  background: linear-gradient(90deg, #0079b8, #4f46e5);
  color: #ffffff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 30px 70px rgba(79,70,229,0.35);
}

.award-icon {
  font-size: 40px;
}

.award-text h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.award-text p {
  font-size: 16px;
  opacity: 0.9;
}

/* CLIENTS */
.rw-th-clients {
  text-align: center;
}

.rw-th-clients p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 18px;
}

/* MARQUEE */
.rw-marquee {
  overflow: hidden;
  position: relative;
}

.rw-marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 20s linear infinite;
}

.rw-marquee-track span {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
  white-space: nowrap;
  opacity: 0.85;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-th-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-th-head h2 {
    font-size: 34px;
  }

  .rw-th-award {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .rw-th-badges {
    grid-template-columns: 1fr;
  }
}











.rw-why {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-why-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-why-head {
  text-align: center;
  margin-bottom: 80px;
}

.rw-why-head h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

/* GRID */
.rw-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.rw-why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  position: relative;
}

/* HIGHLIGHT CARD */
.rw-why-card.highlight {
  border: 2px solid #0079b8;
  transform: translateY(-10px);
}

/* BADGE */
.rw-why-badge {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* TEXT */
.rw-why-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.rw-why-card p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #475569;
}

.rw-why-card strong {
  color: #020617;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-why-grid {
    grid-template-columns: 1fr;
  }

  .rw-why-card.highlight {
    transform: none;
  }

  .rw-why-head h2 {
    font-size: 34px;
  }
}













.rw-faq-elite {
  padding: 130px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  font-family: 'Inter', system-ui;
  color: #0f172a;
}

.rw-faqe-wrap {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.rw-faqe-head {
  text-align: center;
  margin-bottom: 80px;
}

.rw-faqe-head h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rw-faqe-head p {
  font-size: 18px;
  color: #475569;
  margin-top: 12px;
}

/* ITEM */
.rw-faqe-item {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  overflow: hidden;
  border-left: 5px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.rw-faqe-item.open {
  border-left-color: #0079b8;
}

/* QUESTION */
.rw-faqe-q {
  width: 100%;
  padding: 16px 30px;
  font-size: 17.5px;
  font-weight: 700;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
.rw-faqe-q span {
  width: 22px;
  height: 22px;
  position: relative;
}

.rw-faqe-q span::before,
.rw-faqe-q span::after {
  content: "";
  position: absolute;
  background: #0079b8;
  transition: transform 0.3s ease;
}

.rw-faqe-q span::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}

.rw-faqe-q span::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
}

.rw-faqe-item.open .rw-faqe-q span::after {
  transform: scaleY(0);
}

/* ANSWER */
.rw-faqe-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
}

.rw-faqe-item.open .rw-faqe-a {
  max-height: 700px;
  padding-bottom: 26px;
}

.rw-faqe-a p,
.rw-faqe-a li {
  font-size: 16.5px;
  line-height: 1.85;
  color: #475569;
}

.rw-faqe-a ul {
  padding-left: 20px;
  margin: 12px 0;
}

/* CTA */
.rw-faqe-cta {
  text-align: center;
  margin-top: 70px;
}

.rw-faqe-cta a {
  font-size: 18px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .rw-faqe-head h2 {
    font-size: 32px;
  }

  .rw-faqe-q {
    padding: 22px;
  }
}












.rw-final-cta {
  padding: 140px 0;
  background: linear-gradient(135deg, #0079b8, #2898d2);
  font-family: 'Inter', system-ui;
  color: #ffffff;
}

.rw-cta-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEAD */
.rw-cta-head {
  max-width: 780px;
  margin-bottom: 90px;
}

.rw-cta-head h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rw-cta-head p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 18px;
  opacity: 0.9;
}

/* GRID */
.rw-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.rw-cta-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 24px;
  padding: 46px 38px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.rw-cta-card.highlight {
  transform: translateY(-16px);
  border: 2px solid #0079b8;
}

/* TEXT */
.rw-cta-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.rw-cta-sub {
  font-size: 16px;
  font-weight: 700;
  color: #0079b8;
  margin-bottom: 16px;
}

.rw-cta-card p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
}

/* BUTTON */
.rw-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #4f46e5;
  border: 2px solid #4f46e5;
  text-decoration: none;
}

.rw-btn.primary {
  background: linear-gradient(90deg, #0079b8, #4f46e5);
  color: #ffffff;
  border: none;
}

/* SPECIAL COLORS */
.rw-cta-card.whatsapp .rw-btn {
  color: #16a34a;
  border-color: #16a34a;
}

.rw-cta-card.call .rw-btn {
  color: #0ea5e9;
  border-color: #0ea5e9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-cta-grid {
    grid-template-columns: 1fr;
  }

  .rw-cta-card.highlight {
    transform: none;
  }

  .rw-cta-head h2 {
    font-size: 34px;
  }
}











.rw-footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #e5e7eb;
  font-family: 'Inter', system-ui;
}

.rw-footer-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px 30px;
}

/* GRID */
.rw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* COLUMN */
.rw-footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.rw-footer-col p {
  font-size: 14.8px;
  line-height: 1.8;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.rw-footer-muted {
  color: #94a3b8;
  margin-top: 12px;
}

/* LINKS */
.rw-footer-col ul {
  list-style: none;
  padding: 0;
}

.rw-footer-col ul li {
  margin-bottom: 8px;
}

.rw-footer-col ul li a {
  font-size: 14.5px;
  color: #cbd5f5;
  text-decoration: none;
}

.rw-footer-col ul li a:hover {
  color: #ffffff;
}

/* BADGE */
.rw-footer-badge {
  background: rgba(99,102,241,0.15);
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #e0e7ff;
}

/* CONTACT */
.rw-footer-contact p {
  margin-bottom: 8px;
}

.rw-footer-contact a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
}

/* BOTTOM */
.rw-footer-bottom {
  text-align: center;
  padding-top: 24px;

  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-footer-grid {
    grid-template-columns: 1fr;
  }
}





.hero-slider {
  width: 100%;
}

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







  /* SECTION */
.rw-showcase {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.rw-showcase-head {
 
  margin-bottom: 50px;
}

.rw-showcase-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #020617;
}

.rw-showcase-head h2 span {
  color: #0ea5e9;
}

.rw-showcase-head p {
  margin-top: 8px;
  color: #64748b;
  font-size: 16px;
}

/* MAIN BOX */
.rw-showcase-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* VIDEO */
.rw-showcase-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.rw-showcase-video video {
  width: 100%;
  display: block;
}

/* CONTENT */
.rw-showcase-content {
  position: relative;
  padding-left: 30px;
}

.rw-showcase-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  border-radius: 10px;
}

.rw-showcase-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 18px;
}

/* HIGHLIGHT STRIP */
.rw-highlight {
  margin: 24px 0;
  padding: 16px 20px;
  background: #f1f5f9;
  border-radius: 12px;
  font-size: 16px;
  color: #0f172a;
}

/* BUTTON */
.rw-showcase-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #222, #111);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(56,189,248,0.4);
  transition: transform 0.3s ease;
}

.rw-showcase-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rw-showcase-box {
    grid-template-columns: 1fr;
  }

  .rw-showcase-content {
    padding-left: 0;
  }

  .rw-showcase-content::before {
    display: none;
  }
}








.rw-cta-light {
  padding: 90px 0;
  background: linear-gradient(135deg, #094170, #0079b8);
}

.rw-cta-light-box {
  position: relative;
  padding: 70px 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #fff1d6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* CONTENT */
.rw-cta-light-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2933;
}

.rw-cta-light-content h2 span {
  color: #ff9f1c;
}

.rw-cta-light-content p {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

/* BUTTONS */
.rw-cta-light-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rw-btn-primary {
  padding: 14px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9f1c, #ff6a00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(255,159,28,0.35);
  transition: all 0.3s ease;
}

.rw-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(255,159,28,0.45);
}

.rw-btn-secondary {
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #ff9f1c;
  color: #ff9f1c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rw-btn-secondary:hover {
  background: #ff9f1c;
  color: #fff;
}

/* SHAPES */
.rw-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: #ff9f1c;
  top: -60px;
  right: -60px;
}

.shape-2 {
  width: 120px;
  height: 120px;
  background: #ffd166;
  bottom: -40px;
  left: -40px;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: #ff6a00;
  bottom: 60px;
  right: 100px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rw-cta-light-box {
    padding: 50px 25px;
  }

  .rw-cta-light-content h2 {
    font-size: 32px;
  }

  .rw-cta-light-content p {
    font-size: 16px;
  }
}








.rw-products-3 {
  padding: 90px 0;
  background: #f8fafc;
}

.rw-products-head h3 {
  font-size: 36px;
  font-weight: 700;
  color: #020617;
}

.rw-products-head h3 span {
  color: #0ea5e9;
}

.rw-products-head p {
  margin-top: 6px;
  color: #64748b;
}

/* CARD */
.rw-card {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.rw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.rw-card-img {
  height: 210px;
}

.rw-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BODY */
.rw-card-body {
  padding: 18px;
  text-align: center;
}

.rw-card-body h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .rw-card-img {
    height: 180px;
  }
}









/* =========================
   HERO SECTION – CLEAN STYLE
   ========================= */

.hero-section{
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background: #ffffff;   /* clean white */
  color: #1a1a1a;
}

/* -------- CONTENT -------- */
.hero-content h1{
  font-size:32px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-subheadline{
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  max-width: 620px;
  margin-bottom: 24px;
}

/* -------- TRUST LINE -------- */
.hero-trust-line{
  font-size: 16px;
  color: #333;
  margin-bottom: 32px;
}

/* -------- CTA BUTTONS -------- */
.hero-cta-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary{
  background: #cbac0a;
  color: #111;
  padding: 15px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-primary:hover{
  background: #e2c84f;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp{
  background: #25d366;
  color: #ffffff;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-whatsapp:hover{
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* -------- IMAGE -------- */
.hero-image img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* -------- RESPONSIVE -------- */
@media(max-width: 992px){
  .hero-section{
    grid-template-columns: 1fr;
    padding: 70px 6%;
  }
  .hero-image{
    margin-top: 40px;
  }
}

@media(max-width: 576px){
  .hero-content h1{
    font-size: 30px;
  }
  .hero-subheadline{
    font-size: 16px;
  }
  .hero-cta-buttons a{
    width: 100%;
    text-align: center;
  }
}




/* ==============================
   LOCAL SOCIAL PROOF SECTION
   ============================== */

/* ==============================
   LOCAL SOCIAL PROOF – FIXED CSS
   ============================== */

.local-social-proof{
  padding: 80px 6%;
  background: #f8f8f8;
}

/* Header */
.local-social-header{

  margin-bottom: 50px;
}

.local-social-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
}

.local-social-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #222;
}

/* GRID FIX */
.local-social-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch; /* IMPORTANT */
}

/* CARD */
.social-proof-item{
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  display: flex;              /* IMPORTANT */
  flex-direction: column;     /* IMPORTANT */
  height: 100%;               /* IMPORTANT */
}

/* Title */
.social-proof-item h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* Text */
.social-proof-item p{
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
}

/* Hover (optional but premium) */
.social-proof-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  transition: .3s ease;
}

/* Responsive */
@media (max-width: 992px){
  .local-social-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px){
  .local-social-proof{
    padding: 60px 5%;
  }

  .social-proof-item{
    padding: 26px;
  }
}










/* ==============================
   FEATURED INSTALLATIONS SECTION
   ============================== */

.featured-installations{
  padding: 90px 6%;
  background: #ffffff;
}

.featured-header{
  max-width: 900px;
  margin-bottom: 55px;
}

.featured-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
}

.featured-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* Grid */
.featured-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.featured-card{
  background: #f9f9f9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}

/* Image */
.featured-card img{
  width: 100%;

  object-fit: cover;
}

/* Content */
.featured-content{
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-content h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.featured-content blockquote{
  
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

.author{
  
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
}

.featured-meta{

  color: #333;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

/* Video Link */
.video-link{

  font-size: 15px;
  font-weight: 700;
  color: #cbac0a;
  text-decoration: none;
}

.video-link:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px){
  .featured-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .featured-grid{
    grid-template-columns: 1fr;
  }
}









/* ==============================
   DELHI NCR MARKET CONTEXT
   ============================== */

.market-context{
  padding:60px 6%;
  background: #f8f8f8;
}

/* Header */
.market-header{

  margin-bottom: 55px;
}

.market-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 18px;
  color: #111;
}

.market-header p{
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}

/* Grid */
.market-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* Item */
.market-item{
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}

.market-item h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.market-item p{

  line-height: 1.65;
  color: #222;
}

/* Responsive */
@media(max-width: 992px){
  .market-grid{
    grid-template-columns: 1fr;
  }
}

@media(max-width: 576px){
  .market-context{
    padding: 60px 5%;
  }

  .market-item{
    padding: 26px;
  }
}










/* ==============================
   PRODUCT SHOWCASE – TABS
   ============================== */

.product-showcase{
  padding: 90px 6%;
  background: #ffffff;
}

.product-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 35px;
  color: #111;
}

/* Tabs */
.product-tabs{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn{
  padding: 12px 20px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px;
}

.tab-btn.active{
  background: #cbac0a;
  color: #111;
  border-color: #cbac0a;
}

/* Content */
.tab-content{
  display: none;
}

.tab-content.active{
  display: block;
}

/* Grid */
.tab-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.tab-text h3{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.tab-text p{

  line-height: 1.65;
  color: #444;
  margin-bottom: 10px;
}

.price{
  margin-top: 12px;
  font-size: 16px;
}

.tab-image img{
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Responsive */
@media(max-width: 992px){
  .tab-grid{
    grid-template-columns: 1fr;
  }
}










/* ==============================
   ROI CALCULATOR SECTION
   ============================== */

.roi-calculator{
  padding: 50px 6%;
  background: #f2f2f2;
}

.roi-header{
  max-width: 800px;
  margin-bottom: 40px;
}

.roi-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.roi-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Box */
.roi-box{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 14px;
}

/* Inputs */
.roi-inputs{
  display: grid;
  gap: 22px;
}

.field label{
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.field select,
.field input{
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* Button */
.roi-btn{
  background: #cbac0a;
  color: #111;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.roi-btn:hover{
  background: #e2c84f;
}

/* Output */
.roi-output{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0079b8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.roi-output p{
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* Responsive */
@media(max-width: 992px){
  .roi-box{
    grid-template-columns: 1fr;
  }
}







/* ==============================
   PRICING SECTION
   ============================== */

.pricing-section{
  padding: 90px 6%;
  background: #ffffff;
}

/* Header */
.pricing-header{

  margin-bottom: 55px;
}

.pricing-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.pricing-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Card */
.pricing-card{
  background: #f9f9f9;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  position: relative;
}

.pricing-card h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price{
  font-size: 18px;
  margin-bottom: 22px;
  color: #111;
}

.pricing-card ul{
  list-style: none;
  padding: 0;
}

.pricing-card ul li{
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #444;
}

/* Featured */
.pricing-card.featured{
  background: #fffdf3;
  border: 2px solid #cbac0a;
}

.badge{
  position: absolute;
  top: -12px;
  right: 20px;
  background: #cbac0a;
  color: #111;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

/* CTA */
.pricing-cta{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary{
  background: #cbac0a;
  color: #111;
  padding: 16px 30px;
  border-radius: 6px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary:hover{
  background: #e2c84f;
}

.btn-whatsapp{
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
}

.btn-whatsapp:hover{
  background: #1ebe5d;
}

/* Responsive */
@media(max-width: 1100px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}










/* ==============================
   FAQ – TIMELINE STYLE
   ============================== */

.faq-timeline{
  padding: 90px 6%;
  background: #ffffff;
}

/* Header */
.faq-timeline-header{
  max-width: 900px;
  margin-bottom: 60px;
}

.faq-timeline-header h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.faq-timeline-header p{
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Timeline Wrapper */
.faq-timeline-wrap{
  max-width: 900px;
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
.faq-timeline-wrap::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}

/* Step */
.faq-step{
  position: relative;
  padding-left: 40px;
  margin-bottom: 45px;
}

.step-dot{
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #cbac0a;
  border-radius: 50%;
}

/* Text */
.faq-step h3{
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.faq-step p{
  font-size: 15.5px;
  line-height: 1.65;
  color: #444;
}

/* Responsive */
@media(max-width: 576px){
  .faq-timeline{
    padding: 60px 5%;
  }

  .faq-timeline-wrap{
    padding-left: 30px;
  }

  .faq-step{
    padding-left: 30px;
  }
}






/* ==============================
   GUARANTEE – ALTERNATE DESIGN
   ============================== */

.guarantee-alt{
  padding: 90px 6% 0;
  background: #ffffff;
}

/* Layout */
.guarantee-alt-wrap{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #eaeaea;
}

/* Left promise */
.guarantee-promise h2{
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 14px;
}

.guarantee-promise h3{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
}

.guarantee-promise h3 span{
  color: #cbac0a;
}

/* Right content */
.guarantee-detail .guarantee-main{
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 18px;
}

.guarantee-detail .guarantee-terms{

  line-height: 1.6;
  color: #222;
}

/* Bottom strip */
.guarantee-strip{
  padding: 18px 6%;
  font-size: 14.5px;
  color: #444;
  background: #f8f8f8;
  text-align: center;
}

/* Responsive */
@media(max-width: 992px){
  .guarantee-alt-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guarantee-strip{
    font-size: 14px;
  }
}





/* ==============================
   FINAL CTA SECTION
   ============================== */

.final-cta{
  padding: 100px 6%;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
}

.final-cta-box{
  max-width: 900px;
  background: #ffffff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  text-align: center;
}

/* Heading */
.final-cta-box h2{
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
}

/* Sub text */
.cta-sub{
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

/* Buttons */
.cta-buttons{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary{
  background: #cbac0a;
  color: #111;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary:hover{
  background: #e2c84f;
}

.btn-whatsapp{
  background: #25d366;
  color: #000;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.btn-whatsapp:hover{
  background: #1ebe5d;
}

.btn-outline{
  border: 2px solid #111;
  color: #111;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline:hover{
  background: #111;
  color: #ffffff;
}

/* Call line */
.cta-call{
  font-size: 15.5px;
  color: #555;
}

.cta-call a{
  font-weight: 700;
  color: #111;
  text-decoration: none;
  margin-left: 6px;
}

.cta-call span{
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media(max-width: 576px){
  .final-cta-box{
    padding: 40px 24px;
  }

  .cta-sub{
    font-size: 16.5px;
  }
}
