/* font family */
/* Add safe area padding for iPhones */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Apply Noto Serif Display to headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'League Spartan', sans-serif;
}

.tittles {
  font-family: 'League Spartan', sans-serif;
}
/* Apply Julius Sans One to paragraphs */
p, .faq-answer p {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
}

.logoscroll {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* same as Tailwind’s space-x-2 */
}

/* Image styling */
.logo-img {
  height: 60px;  /* same as h-20 */
  width: auto;   /* maintain aspect ratio */
}

/* Responsive for medium screens (md:h-20 in Tailwind means height:80px still) */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

/* Header text color transitions */
#menu-icon { 
  color: white; 
  transition: color .25s ease; 
}

/* --- Hero Section --- */
.hero-image {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/bg2-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* --- Tablet --- */
@media (max-width: 1024px) {
  .hero-image {
    background-image: url("images/bg-tablet.jpg");
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .hero-image {
    background-image: url("images/mobile.jpg");
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* Scrolled state */
#site-header.scrolled #brand-text { color: #000 !important; }
#site-header.scrolled #menu-icon { color: #000 !important; }

/* Mobile menu styling */
#site-header nav#menu { 
  background-color: rgba(0,0,0,0.9); 
  transition: background-color .25s, color .25s; 
}
#site-header.scrolled nav#menu { 
  background-color: rgba(255,255,255,0.97); 
  color: #000; 
}
#site-header.scrolled nav#menu a,
#site-header.scrolled nav#menu button { 
  color: #000 !important; 
}

/* Hero fade animations */
.fade {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.fade.show {
  opacity: 1;
}

/* Hero buttons */
/* Hero buttons container */
.hero-buttons {
  display: flex;
  gap: 1rem; /* space between buttons */
  justify-content: center;
  margin-top: -69px; /* move buttons up (adjust as needed) */
  flex-wrap: wrap;   /* allows wrapping on smaller screens */
}

/* Buttons */
.hero-btn {
  border-color: #ee4d37;
  border-width: 2px;
  border-style: solid;
  color: #ff7b69;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 15px;
  transition: background 0.3s, transform 0.3s;
   background: rgba(238, 77, 55, 0.1);
}

/* Hover effect */
.hero-btn:hover {
  transform: scale(1.03);
}

/* Mobile: stack buttons vertically */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;  /* reduce space for stacked buttons */
    margin-top: -150px; /* adjust vertical position for mobile */
  }
 
}

/* contactus section ---------------------------------------- */
     /* Heading section */
    .form-header {
      text-align: center;
      padding: 0px 20px 10px;
    }

    .form-header h2 {
      font-size: 28px;
      font-weight: 600;
      color: #0a2540;
      margin-bottom: 1px;
    }

    .form-header p {
      color: #555;
      font-size: 15px;
      margin-top: 0;
    }

     .form-strip {
      background: #ff6c1f;
      padding: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .form-strip form {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 1200px;
    }

    .form-strip input,
    .form-strip textarea {
      padding: 12px 15px;
      border: none;
      border-radius: 8px;
      outline: none;
      font-size: 15px;
      flex: 1;
      min-width: 180px;
    }

    .form-strip input::placeholder,
    .form-strip textarea::placeholder {
      color: #555;
    }

    .form-strip button {
      background: #ffffff;
      color: #0077ff;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .form-strip button:hover {
      background: #0077ff;
      color: #fff;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
       .form-header h2 {
        font-size: 22px;
      }
      .form-strip form {
        flex-direction: column;
        align-items: stretch;
      }

      .form-strip input,
      .form-strip textarea,
      .form-strip button {
        width: 100%;
      }
    }
    
/* about section ---------------------------------------- */

/* General Layout */


.custom-section {
  margin-top: 0px;
  margin-bottom: 0px;
}

html {
  scroll-behavior: smooth;
}

.about-section {
  background-color: #f0f2f1;
  max-width: auto;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Image Styling */
.about-image img {
  width: 250px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: block;
  margin: auto;
}

/* Content Styling */
.about-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-content{
  padding-right: 40px;
}

/* Expandable Text */
.hidden-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.hidden-text.show {
  max-height: 2000px; /* Enough to reveal text */
}

/* Toggle Button */
.toggles-btn {
  background: none;
  border: none;
  color: #ee4d37;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px 0;
  display: inline-flex;
  align-items: center; /* vertical alignment fix */
  gap: 6px; /* space between text and arrow */
  line-height: 1.2; /* keeps text + arrow aligned */
}

/* Arrow pointing right (default) */
.toggles-btn .arrow-readmore {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #ee4d37;
  transition: transform 0.3s ease;
}

/* When expanded, arrow points UP */
.toggles-btn.active .arrow-readmore {
  transform: rotate(-90deg); /* rotates right arrow (►) into up arrow (▲) */
}



/* ✅ Responsive */
@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr; /* Stack for tablet */
    text-align: justify;
  }

  .about-content h3 {
    text-align: justify;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 20px 15px;
  }

  .about-image img {
    width: 200px;
    height: 200px;
  }
  .about-content{
  padding-right: 0px;
}

  .about-content h3 {
    font-size: 1.8rem;
  }

  .toggles-btn {
    font-size: 0.95rem;
  }
}

/*before & after-----------------------------------------------*/
  /* Section Layout */

.custom-section{
  background-color: #f0f2f1;
}
.comparison-grid {
  max-width: 1000px;
  margin: auto;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; /* no gap */
}

.comparison-box {
  position: relative;
  max-width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  background: white;
  box-shadow: none; /* remove shadow in middle */
  border-radius: 0; 
  overflow: hidden;
}

/* Add outer shadow to the whole grid, not individual boxes */
.comparison-grid {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-radius: 24px;
  overflow: hidden;
}

/* Left rounding */
.first-box {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

/* Right rounding */
.second-box {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

  /* Only round the left side of the first box */
  .first-box {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  /* Only round the right side of the second box */
  .second-box {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .comparison-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 20;
  }

  /* Before/After Container */

  .before-after-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
  }

  .before-after-container img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .clip-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s linear;
  }

/* Slider */
.slider-circle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

/* Remove track */
.slider-circle::-webkit-slider-runnable-track,
.slider-circle::-moz-range-track {
  height: 0;
  background: transparent;
}

/* Slider Thumb */
.slider-circle::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #ee4d37;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.slider-circle::-webkit-slider-thumb:hover {
  transform: scale(1.15) translateY(-5px);
}

.slider-circle::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #ee4d37;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.slider-circle::-moz-range-thumb:hover {
  transform: scale(1.15) translateY(-5px);
}

/* ✅ Responsive Adjustments */
@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr; /* Stack for tablet */
  }
  .comparison-title {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

@media (max-width: 600px) {
  .comparison-section {
    padding: 40px 15px;
  }
  .comparison-box {
    max-width: 100%;
    border-radius: 12px;
  }
  .comparison-title {
    font-size: 0.9rem;
  }
  .slider-circle::-webkit-slider-thumb,
  .slider-circle::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }
  .first-box {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .second-box {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
  }
}
/*table-----------------------------------------------------------------------*/
.table-arc{
      background: #f0f2f1 !important;
      margin-top: 0%;
      padding-bottom: 20px;
    }

.pricing-table td.side-title,
.pricing-table td.side-head {
  width: 40%; /* more space for services */
}

.pricing-table th.tab-standard,
.pricing-table td:nth-child(2),
.pricing-table th.tab-premium,
.pricing-table td:nth-child(3) {
  width: 20%; /* smaller Essential & Advanced */
}
   

.pricing-table th,
.pricing-table td {
  padding: 8px; /* space inside cells */
  text-align: center;
}
/* =================== TABLE BASE =================== */


    .table-tabs {
      display: flex;
      gap: 0px;
      position: relative;
      top: 0;
      z-index: 10;
      margin: 0 12px;
      margin-bottom: -28px;
      justify-content: flex-end;
    }
    .tab {
      flex: 1;
      margin: 0 2px;
      border-top-left-radius: 13px;
      border-top-right-radius: 13px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      padding: 22px 0 14px 0;
      font-size: 1.13em;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }
    .tab-standard { background: #d0d4c7;
    color: #ff7b69; }
    .tab-premium { background: #d0d4c7;
    color: #ff7b69; }

    .pricing-table {
      width: 60%;
      margin: auto;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 1rem;
      min-width: 780px;
      table-layout: fixed;
      border-radius: 8px !important;
    }
    th, td {
      text-align: center;
       width: 25%;
    }
    table td, 
    table th {
      padding: 10px 12px;
      line-height: 1.1;
    }

    #hero-dots{
      color: #ee4d37;
    }

    .side-head {
      text-align: left;
      font-weight: 600;
      font-size: 0.95em;   /* smaller text */
      padding: 3px 8px;   /* less top/bottom padding */
      padding-left: 30px;
      background: #d0d4c7 !important;
      color: #000000;
      min-width: 180px;    /* reduce width */
      border-right: 1.1px solid #f1f1f1;
      line-height: 1.1;    /* tighter line spacing */
    }
    
    .servicelist{
      background-color: #d0d4c7;
      color: #cbc0b7;
    }

    .plan-row { background: #fff;}
    .price-cell {
      font-size: 2.2em;
      font-weight: bold;
      color: #ff7b69;
    }
    .unit-cell {
      font-size: 1em;
      color: #ff7b69;
    }
    .desc-cell {
      font-size: 1em;
      color: #666;
      margin-top: -.8em;
    }
    .fa-xmark { color: #d9382c; font-size: 1.4em; }
    .fa-check { color: #5fa93c; font-size: 1.4em; }
    .pt-max {
      color: #444;
      font-weight: 600;
      font-size: 1.05em;
    }
    .row-alt { background: #ffffff;}
    .delivery-cell {
      background: #d0d4c7 !important;
      color: white !important;
      font-weight: 600;
    }
    .button-side{
      background-color: #f0f2f1;
    }
    .price{
      background-color: #ffffff;
    }

    .side-title {
      background-color: #d0d4c7;
      color: #ffffff;
    }

    .heading{
      background-color: #cbc0b7;
      color: #ffffff;
    }



    /* Add transition to the whole row */
      .pricing-table tr {
        transition: all 0.3s ease;
      }

      /* Standard row hover */
      .pricing-table tr.standard-row:hover {
        transform: scale(1.03);
        background: #ffffff; /* slightly darker shade */
      }

      /* Premium row hover */
      .pricing-table tr.premium-row:hover {
        transform: scale(1.03);
        background:white ; /* slightly darker shade */
      }

      #pricing-tablearc{
        border-top: 1px solid #989898; /* black line, you can change color & thickness */
      }


      .downline{
        border-bottom: 1px solid #989898;
      }

    @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
    }

    .animate-fadeIn {
      animation: fadeIn 0.3s ease-out;
    }

    /*bar*/
     /* ✅ Universal Title Bar Styling */
      .title-bar {
        width: 62%;
        margin: 10px auto;              /* Even spacing above & below */
        text-align: center;
        font-size: 25px;
        font-weight: 700;
        padding: 10px 15px;
        color: #ee4d37;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        animation: colorPulse 5s infinite ease-in-out;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      /* Hover effect */
      .title-bar:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      }

      .hidden {
        display: none;
      }

      .show {
        display: table-row;
      }

      .toggle-btn {
        float: right;
        font-size: 0.6em;
        padding: 3px 8px;
        margin-left: 1px;
        cursor: pointer;
        border: 1px solid #ff7b69;
        background: #ff7b69;
        border-radius: 4px;
        transition: 0.3s;
        color: #6a7648;
      }
      .title-bar{
        margin-top: 0 !important;
      }

      .table-arc,
      .pricing-table {
        margin-top: 0px !important;
        margin-bottom: 0 !important;
        background-color: #cbc0b7;
      }

      .table-arc {
        padding-top: 10px !important;
        margin-top: 0 !important;
      }
     /* ---------- Side Images Behind Table ---------- */
      .table-wrapper {
        position: relative;
        width: fit-content;
        margin: 0 auto;
        z-index: 1; /* Keep wrapper on top of background */
      }

      .side-image {
        position: absolute;
        top: 20%;
        transform: translateY(-50%);
        width: 350px;         /* adjust size */
        opacity: 0.35;        /* make it faint behind the table */
        z-index: -1;           /* ensures it goes behind table */
        pointer-events: none; /* lets you click table normally */
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
       .left-img {
        position: absolute;
        top: 20%;
        transform: translateY(-50%);
        width: 350px;         /* adjust size */
        opacity: 0.35;        /* make it faint behind the table */
        z-index: -1;           /* ensures it goes behind table */
        pointer-events: none; /* lets you click table normally */
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
       .right-img {
        position: absolute;
        top: 60%;
        transform: translateY(-50%);
        width: 350px;         /* adjust size */
        opacity: 0.35;        /* make it faint behind the table */
        z-index: -1;           /* ensures it goes behind table */
        pointer-events: none; /* lets you click table normally */
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .left-img {
        left: -30px;         /* move image to left side */
      }

      .right-img {
        right: -0px;        /* move image to right side */
      }

      /* Optional: subtle hover fade (just for aesthetics) */
      .table-wrapper:hover .side-image {
        opacity: 0.35;
      }

     
    
      /* Smooth color transition every 1s 
      @keyframes colorPulse {
      0%   { background-color: #6a7648; }
      50%  { background-color: #606457; }
      100% { background-color: #6a7648; }
      }
*/
/* =================== RESPONSIVE =================== */

/* Tablets (up to 950px) */
@media (max-width: 950px) {
  .table-container { 
    border-radius: 0; 
    box-shadow: none; 
    padding: 15px; /* add breathing space */
  }
  .pricing-table { 
    font-size: 0.95em; 
    min-width: 620px; 
  }
  .side-head { 
    font-size: 1em; 
    padding-left: 12px; 
  }
  .title-bar {
    width: 100% !important; /* wider for tab */
    font-size: 1.4rem;
  }
  .heading th, td {
      border-color: #6a7648;
    }
}

/* Mobile (up to 600px) */
@media (max-width: 768px) {
  .table-container {
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding-left: 8px;
    padding-right: 8px;
  }

  .title-bar {
    width: 100% !important;
    margin-bottom:5px ; 
    border-radius: 0 !important;
    font-size: 0.99rem;
  }
  .pricing-table {
    width: 100% !important;
    padding-left: 3px;
    padding-right: 3px;
    min-width: 0 !important;
    margin: 0 !important;
  }
 .downline {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* optional: left-aligns text */
  }
  .price-cell, .unit-cell {
    margin-bottom: 0.2em;
    display: block;
  }
  .toggle-btn{
    margin-top: 5px;
    font-size: 10px;
  }
    table th, 
    table td {
      border: none !important;
    }
    .virtual-text {
      font-size: 0.8em; /* or 12px for a specific size */
    }
}
 /* Hide on mobile screens */
      @media (max-width: 768px) {
        .side-image {
          display: none;
        }
      }

      /* Slightly larger for big screens */
      @media (min-width: 1400px) {
        .side-image {
          width: 350px;
        }
        .left-img { left: -10x; }
        .right-img { right: -0px; }
      }

      @media (max-width: 950px) {
        .side-image {
          display: none;
        }
      }

/*grid table---------------------------------------------------------------------------*/

.price-container {
      display: flex;
      justify-content: center;
      gap: 92px; /* space between cards */
      flex-wrap: wrap; /* stack on small screens */
      margin: 0px auto;
      background-color: #f0f2f1;
    }

    .plan-card1 {
      margin-top: 5px;
      width: 350px; /* fixed size */
      min-height: 500px; /* ensures same height */
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background-color: #d0d4c7;
    }

    .plan-card2 {
      margin-top: 5px;
      width: 350px; /* fixed size */
      min-height: 500px; /* ensures same height */
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .plan-title {
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
      color: #ee4d37;
    }
     .plan-title1 {
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 10px;
      color: #ee4d37;
    }

    .plan-for, .plan-tax {
      text-align: center;
      color: #444;
      margin-bottom: 8px;
    }

    .plan-price {
      font-size: 2rem;
      font-weight: 800;
      text-align: center;
      color: #ee4d37;
      padding: 15px 20px;
      padding-left: 50PX;
      padding-right: 50px;
      border-radius: 12px;
      background: #cbc0b7;
      margin: 20px auto 10px;
      max-width: fit-content;
      position: relative;
      z-index: 2;
      transition: box-shadow 0.3s ease-in-out;
    }
    
    /* Position tax text left below price box */
    .plan-price + .plan-tax {
      text-align: right;
      margin: 15px 50px 15px 15px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #6a7648;
      position: relative;
      top: -10px; /* adjust to overlap slightly under price box */
    }

    .plan1-tax {
      text-align: right;
      margin: 15px 30px 15px 15px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #555;
      position: relative;
      top: -10px; /* adjust to overlap slightly under price box */
    }

    .plan2-tax {
      text-align: right;
      margin: 15px 25px 15px 15px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #555;
      position: relative;
      top: -10px; /* adjust to overlap slightly under price box */
    }


    .plan-inclusion {
      font-weight: 600;
      margin: 15px 0 8px;
      color: #222;
    }

    /* Accordion */
    .accordion-header {
      display: flex;                     /* enable flexbox */
      justify-content: space-between;    /* text left, arrow right */
      align-items: center;               /* vertically center text & arrow */
      width: 100%;
      background: #cbc0b7;
      border: none;
      outline: none;
      text-align: left;
      padding: 12px;
      color: black;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border-bottom: 1px solid #ddd;
      transition: background 0.3s;
    }

    .accordion-header:hover {
      background: #635f5f;
    }

    /* Down arrow */
    .arrow {
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 12px solid #ee4d37; /* arrow color */
      transition: transform 0.3s ease;
    }

    .arrow.rotate {
      transform: rotate(180deg);
    }

     .arrow1 {
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 12px solid #ee4d37; /* arrow color */
      transition: transform 0.3s ease;
    }

    .arrow1.rotate {
      transform: rotate(180deg);
    }
    

    .accordion-content {
      display: none;
      padding: 10px 15px;
      background: #fff;
    }

    .accordion-content ul {
      margin: 0;
      padding-left: 20px;
    }

    .accordion-content li {
      margin: 6px 0;
      color: #555;
    }
    .accordion-content ul {
      list-style-type: disc;       /* Ensures bullets display */
      margin: 0 0 0 24px;          /* Provides left indent */
      padding: 0;
    }

    .accordion-content li {
      margin: 6px 0;
      color: #555;
      padding-left: 0;             /* No extra space needed */
    }

    /* Buttons */
    .plan-actions {
      margin-top: auto;
      display: flex;
      justify-content: center;
    }

    .btn-book {
      background: #ff7b69; 
      color:white;
      border-color: #ff7b69;
      margin-top: 0px;
      padding: 10px 16px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-book:hover {
      background: #ee4d37;
      border-color: #ee4d37;
    }
    .btn-book1 {
      background: #ff7b69; 
      color:white;
      border-color: #ff7b69;
      margin-top: 15px;
      padding: 10px 16px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-book1:hover {
      background: #ee4d37;
      border-color: #ee4d37;
    }

   /* ---------- Side Images Behind Table ---------- */
.table-wrapper1 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  z-index: 0; /* keep wrapper above background */
}

.side-image1 {
  position: absolute;
  width: 350px;
  opacity: 0.35;
  z-index: -1; /* behind content */
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Left Image */
.left-img1 {
  top: 40%;
  left: -235px;
  transform: translateY(-50%);
}

.side-image2 {
  position: absolute;
  width: 350px;
  opacity: 0.35;
  z-index: -1; /* behind content */
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Left Image */
.left-img2 {
  top: 160%;
  left: -360px;
  transform: translateY(-50%);
}

/* Right Image */
.right-img1 {
  top: 110%;
  right: -232px;
  transform: translateY(-50%);
}

/* Hover fade (optional aesthetic) */
.table-wrapper1:hover .side-image1 {
  opacity: 0.4;
}

/* ✅ Hide side images on tablet and mobile */
@media (max-width: 1024px) {
  .side-image1 {
    display: none;
  }
}

/* Tablet screens */
@media (max-width: 950px) {
 
   .price-container {
    flex-direction: row;       /* side by side */
    flex-wrap: wrap;           /* allow wrapping */
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center vertically if needed */
    gap: 40px;
    padding: 0 10px;
    width: 100%;
  }

  .plan-card1, .plan-card2 {
    width: 45%;
    min-height: auto;
    padding: 18px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-top: 5px;
  }

  .plan-title {
    font-size: 1.4rem;
  }

  .plan-price {
    font-size: 1.8rem;
    padding: 12px 40px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    min-width: 220px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .plan-price + .plan-tax,
  .plan1-tax,
  .plan2-tax {
    font-size: 0.85rem;
    margin: 12px 30px 12px 20px;
    top: -9px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 11px;
  }

  .btn-book {
    padding: 9px 15px;
    font-size: 0.95rem;
    margin-top: 0px;
  }
  .btn-book1 {
    padding: 9px 15px;
    font-size: 0.95rem;
  }
}

/* Mobile screens */
    @media (max-width: 600px) {

  .price-container {
    flex-direction: column;    /* stack vertically */
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center cards */
    gap: 20px;
    padding: 10px;
    width: 100%;
  }

  .plan-card1, .plan-card2 {
    width: 100%;
    max-width: 350px;          /* nice centered max width */
    min-height: auto;
    margin: 0 auto;            /* center block if extra space */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
  }

  .plan-title {
    font-size: 1.3rem;
  }

  .plan-price {
    font-size: 1.6rem;
    padding: 10px 30px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .plan-price + .plan-tax,
  .plan1-tax,
  .plan2-tax {
    font-size: 0.8rem;
    margin: 10px 20px 10px 15px;
    top: -8px;
  }

  .accordion-header {
    font-size: 14px;
    padding: 10px;
  }

  .btn-book {
    padding: 8px 14px;
    font-size: 0.9rem;
    margin-top: 0px;
  }
  .btn-book1 {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 950px) {
  .table-wrapper1 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .table-wrapper1 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}


/*B&E-------------------------------------------------------------------------------*/
.other-service {
  width: 62%;
  margin: 20px auto;
  margin-bottom: 0px !important;              /* Even spacing above & below */
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  padding: 10px 15px;
  color: #ee4d37;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: colorPulse 5s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover effect */
  .other-service:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
.plan-features {
  list-style-type: disc;
  padding-left: 22px;
  margin-bottom: 5px;
  background-color:#d0d4c7 ;
}

.button-container {
  text-align: right;
}

.feature-toggle-btn {
   background-color: #ffffff;
  color: #ff7b69;
  padding: 5px 12px;
  border: none;
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33,134,235,0.10);
  transition: background 0.3s;
}
.feature-toggle-btn:hover {
  background-color:#cbc0b7;
}
.offer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 89px;
  justify-content: center;
  margin: 0px 0;
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #f0f2f1;
}

.square-card {
  width: 350px;
  min-height: 480px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(139,137,119,0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 30px 30px 30px;
  transition: box-shadow 0.22s;
}

.square-card1 {
  width: 350px;
  min-height: 480px;
  background: #d0d4c7;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(139,137,119,0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 30px 30px 30px;
  transition: box-shadow 0.22s;
}

.square-card:hover {
  box-shadow: 0 8px 40px rgba(139,137,119,0.21);
}

.square-card ul {
  list-style-type: disc;
  padding-left: 22px;
  margin-bottom: 24px;
}

.card-actions {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.card-actions1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.card-actions a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.18s;
}

.square-card .dummy-content {
  text-align: center;
  font-size: 1.15rem;
  color: #686a67;
  margin: auto 0;
}


 
  .plan11-tax {
    text-align: right;
    margin-right: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    position: relative;
    top: -10px; /* adjust to overlap slightly under price box */
  }
 .plan-price1 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #ee4d37;
  padding: 15px 40px;
  border-radius: 12px;
  background: #cbc0b7;
  margin: 20px auto 10px;
  max-width: fit-content;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
   text-decoration-color: #ee4d37;
  color: #999;
  font-size: 1.8rem;
  opacity: 0.7;
}

.new-price {
  color: #ee4d37;
  font-size: 2.4rem;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.unit {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.offer-note {
  text-align: center;
  color: #28a745;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); color: #28a745; }
  50% { transform: scale(1.05); color: #2ecc71; }
  100% { transform: scale(1); color: #28a745; }
}

@media (max-width: 1200px) {
  .square-card {
    width: 320px;
    min-height: 440px;
    padding: 28px 18px 24px 18px;
  }
  .offer-section {
    gap: 24px;
  }
  .card-title { font-size: 1.13rem; }
  .price-tag { font-size: 1rem; }
}

@media (max-width: 950px) {

  .other-service {
    width: 100% !important; /* wider for tab */
    font-size: 1.4rem;
  }
  .offer-section {
    flex-direction: row;       /* side by side */
    flex-wrap: wrap;           /* allow wrapping */
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center vertically if needed */
    gap: 40px;
    padding: 0 10px;
  }

  .square-card, .square-card1 {
    width: 45%;
    max-width: 350px;
    min-height: auto;
    padding: 18px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-top: 5px;
  }

  .card-title { 
    font-size: 1.4rem; 
  }

  .plan-price1 {
    font-size: 1.8rem;
    padding: 12px 40px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .plan-price1 + .plan11-tax3 {
    font-size: 0.85rem;
    margin: 12px 30px 12px 20px;
    top: -9px;
  }

  .card-actions a {
    padding: 9px 15px;
    font-size: 0.95rem;
  }
}
/* Mobile screens (600px and below) - vertical stack */
@media (max-width: 600px) {
   .other-service {
    width: 100% !important;
    margin-bottom:5px ; 
    border-radius: 0 !important;
    font-size: 1.2rem;
  }
  .offer-section {
    flex-direction: column;    /* stack vertically */
    justify-content: center;   /* center horizontally */
    align-items: center;       /* center cards */
    gap: 20px;
    padding: 10px;
  }

  .square-card, .square-card1 {
    width: 100%;
    max-width: 350px;          /* nice centered max width */
    min-height: auto;
    margin: 0 auto;            /* center block if extra space */
    padding: 16px 5vw 16px 5vw;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 13px;
    min-width: unset;
  }

  .card-title { 
    font-size: 1.3rem; 
  }

  .plan-price1 {
    font-size: 1.6rem;
    padding: 10px 30px;
    padding-left: 100px;
    padding-right: 100px;
    max-width: 100%;
  }

  .plan-price1 + .plan11-tax3 {
    font-size: 0.8rem;
    margin: 10px 20px 10px 15px;
    top: -8px;
  }

  .card-actions {
    gap: 13px;
    margin-top: 12px;
  }

  .card-actions a {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    border-radius: 50%;
    padding: 8px 14px;
  }

  .square-card .dummy-content {
    font-size: .98rem;
    margin: 18px 0;
  }
}

/*process flow----------------------------------------------------------------------------*/
.work-flow {
  
  background: #f0f2f1;
  margin: 0 !important;
  padding: 0;
}

.pricing-heading12 {
  text-align: center;  
  background-color: #f0f2f1;
  padding-top: 0px; 
  padding-bottom: 10px;
}
.pricing-heading12:hover{
  transform: scale(1.03);
}

.pricing-heading12 h1 {
  width: 90%;
  display: inline-block;  /* makes box fit text */
  padding-bottom:5px ;
  padding-top: 5px;
  padding-right: 5px;
  font-size: 25px;
  border-radius: 8px;
  font-weight: bold;
  color: #ee4d37;
  background-color: white;
}
.workflow-container {
  max-width: 1100px;
  margin: 0px auto;
  padding: 16px;
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  padding-top: 10px;
}

/* Desktop line */
.workflow-steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  height: 4px;
  background: #ee4d37;
  z-index: 0;
  border-radius: 2px;
}

.workflow-step {
  background: #d0d4c7;
  flex: 0 0 calc(16.66% - 12px); /* 6 per row on large screen */
  max-width: calc(16.66% - 12px);
  position: relative;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.07);
  padding: 24px 16px 6px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  min-height: 240px; /* min height, content can grow */
}


/* Hover animation */
.workflow-step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(24,24,24,0.2);
}

.workflow-step1 {
  background: #d0d4c7;
  flex: 0 0 calc(16.66% - 12px); /* 6 per row on large screen */
  max-width: calc(16.66% - 12px);
  position: relative;
  border-radius: 12px 12px 12px 12px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.07);
  padding: 24px 16px 36px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  min-height: 240px; /* min height, content can grow */
}

/* Hover animation */
.workflow-step1:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(24,24,24,0.2);
}

.step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ee4d37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 12px;
  border: 5px solid #fff;
  box-shadow: 0 1px 6px rgba(24,24,24,0.13);
}

.workflow-step:nth-child(2) .step-circle { background: #ee4d37; }
.workflow-step:nth-child(3) .step-circle { background: #ee4d37; }
.workflow-step:nth-child(4) .step-circle { background: #ee4d37; }
.workflow-step:nth-child(5) .step-circle { background: #ee4d37; }
.workflow-step:nth-child(6) .step-circle { background: #ee4d37; }

.workflow-step-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #222;
  margin-top: 0;
  width: 100%;
}

.workflow-step-details {
  font-size: 1rem;
  color: #444;
  width: 100%;
  flex-grow: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
/* Tablet and Mobile: 3 per row */
@media (max-width: 1024px) {
   .pricing-heading h1 {
    width: 100%;
    padding: 6px 30px;
    font-size: 1.4rem;
  }
  .workflow-step {
    flex: 0 0 calc(33.33% - 16px);
    max-width: calc(33.33% - 16px);
    min-height: 220px;
  }
  .workflow-step1 {
    flex: 0 0 calc(33.33% - 16px);
    max-width: calc(33.33% - 16px);
    min-height: 220px;
  }
  .workflow-steps::before {
    display: none;
  }
  
}

 /* --- Mobile: look like provided image --- */
@media (max-width: 768px) { 
  .pricing-heading  {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }

  .workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 4px;
  }

  .workflow-step {
    flex: 1 1 auto;              /* allow even growth */
    max-width: 96vw;
    background: #fff;
    border-radius: 12px;
    padding: 10px 10px; 
    padding-bottom: 0px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    min-height: 90px;           /* set same height */
    display: flex;               /* flexbox inside */
    flex-direction: column;      /* stack title + details */
    justify-content: center;     /* center content vertically */
  }

  .workflow-step1 {
    flex: 1 1 auto;              /* allow even growth */
    max-width: 160vw;
    background: #fff;
    border-radius: 12px;
    padding: 10px 10px;
    padding-right:100px ;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    min-height: 90px;           /* set same height */
    display: flex;               /* flexbox inside */
    flex-direction: column;      /* stack title + details */
    justify-content: center;     /* center content vertically */
  }

  .step-circle {
    display: none;
  }

  .workflow-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.1;
  }

  .workflow-step-title::before {
    content: attr(data-step) ". ";
    font-weight: 700;
    font-size: 1.1rem;
    color: #ee4d37;
    margin-right: 5px;
  }

  .workflow-step-details {
    font-size: 0.86rem;
    color: #555;
    line-height: 1.2;
    margin-left: 13px;
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .pricing-heading12 h1 {
    width: 100%;
    padding: 6px 30px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pricing-heading12 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}

@media (max-width: 480px) {
  .pricing-heading12 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}
/*project show case------------------------------------------------*/

.project-showcase {
    padding: 10px 20px;
    background: #f0f2f1;
  }
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

.pricing-heading1 {
  text-align: center;  
  background-color: #f0f2f1;
  padding-top: 0px; 
  padding-bottom: 10px;
}
.pricing-heading1:hover{
  transform: scale(1.03);
}

.pricing-heading1 h1 {
  width: 75%;
  display: inline-block;  /* makes box fit text */
  padding-bottom:5px ;
  padding-top: 5px;
  font-size: 25px;
  border-radius: 8px;
  font-weight: bold;
  color: #ee4d37;
  background-color: white;
}
  .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Ensure all cards are uniform in size */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 420px; /* 👈 all cards same height */
  width: 100%;
  background: #ddd; /* fallback background while image loads */
}

  /* Make image fill the card perfectly */
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crops image to fit box neatly */
  object-position: center; /* keeps image centered */
  display: block;
  transition: transform 0.3s ease;
}
  .project-card img:hover{
    transform: scale(1.03);
  }
  .project-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
  }
/* Make the .project-link clickable */
  .project-card .project-link {
    pointer-events: auto;
  }
/* Project title - center bottom */
.project-title {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(90, 89, 89, 0.6);
  color: #fff;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* Button - bottom right */
.project-btn {
  position: absolute;
  bottom: 12px;
  right: 2px;
  background: transparent;
  color: white;
  padding: 2px 10px; /* more padding so arrow has space */
  border: 2px solid #ee4d37;
  border-radius: 8px;
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; /* aligns text + arrow nicely */
  align-items: center;
  gap: 6px; /* spacing between text and arrow */
  transition: transform 0.3s ease, background 0.3s ease;
}

.project-btn:hover {
  transform: scale(1.03);
  background: rgba(238, 77, 55, 0.1); /* optional hover bg */
}

/* Arrow pointing right */
.project-btn .arrow-button {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ee4d37; /* smaller + neat */
  transition: transform 0.3s ease;
}

/* Hover effect */
.project-btn .arrow-button :hover {
  transform: translateX(3px);
}



/* Responsive tweaks */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: 1fr 1fr 1fr; /* 3 columns for tablets */
    gap: 18px;
  }
 .pricing-heading1 h1 {
    width: 100%;
    padding: 6px 30px;
    font-size: 1.4rem;
  }
  .project-title {
    font-size: 1rem;
    padding: 2px 4px;
    bottom: 10px;
  }

  .project-btn {
    font-size: 0.6rem;
    padding: 3px 6px;
    bottom: 8px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 1rem;
    padding: 1px 2px;
    bottom: 10px;
  }
  .project-btn {
    font-size: 0.85rem;
    padding: 1px 2px;
    bottom: 8px;
    right: 8px;
  }
}
  /* On mobile, stack the grid */
  @media (max-width: 768px) {
    .project-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .pricing-heading1 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
  }
  @media (max-width: 480px) {
    .project-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .pricing-heading1 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
    .project-showcase h2 {
      font-size: 1.8rem;
    }
    .project-link {
      font-size: 0.9rem;
      padding: 5px 10px;
      bottom: 8px;
      right: 8px;
    }
    .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgb(0 0 0 / 0.18);
  }
  }

/*Q & A-------------------------------------------------------------------------*/

.faq-section {
  background: #f0f2f1;
  position: relative;
  padding: 20px 20px;
  overflow: hidden;
  margin-top: 0px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  margin: 10px auto;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  max-width: 700px; /* Change as needed for your layout */
  width: 100%;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  line-height: 1.4;
  position: relative;       /* needed for arrow positioning */
  text-align: center;       /* centers text */
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-question .arrow-qa {
  position: absolute;
  right: 20px;              /* stick arrow to right */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right:10px solid transparent;
  border-top: 12px solid #ee4d37;
  transition: transform 0.3s ease;
}

/* Active arrow (▲ up) */
.faq-item.active .faq-question .arrow-qa {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 0px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px; /* adjust for long answers */
  padding: 10px 20px 16px;
}


/* Decorative Images */
.faq-side-image {
  position: absolute;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Left side */
.faq-side-image.left.top {
  top: 10%;
  width: 200px;
  left: 0;
  transform: translateY(-5%);
}
.faq-side-image.left.bottom {
  bottom: 30%;
  width: 300px;
  left: 0;
  padding-left: 50px;
  transform: translateY(5%);
}

/* Right side */
.faq-side-image.right.top {
  top: 35%;
  width: 300px;
  padding-right: 60px;
  right: 0;
  transform: translateY(-5%);
}
.faq-side-image.right.bottom {
  bottom: 10%;
  width: 300px;
  padding-right: 60px;
  right: 0;
  transform: translateY(5%);
}

/* Hide images on tablets & mobiles */
@media (max-width: 1024px) {
  .faq-side-image {
    display: none;
  }
}

/* Keep FAQ content above decorations */
.faq-section .container {
  position: relative;
  z-index: 1;
}

/* ------------ Tablet (up to 1024px) ------------ */
@media (max-width: 1024px) {
  .faq-section {
    padding: 50px 18px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* ------------ Mobile (up to 768px) ------------ */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 12px 15px;
    text-align: left;
    padding-right: 40px !important;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

/* ------------ Small Mobile (up to 480px) ------------ */
@media (max-width: 480px) {
  .faq-section {
    padding: 30px 12px;
  }

  .faq-section h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .faq-question {
    font-size: 0.85rem;
    padding: 10px 12px;
    text-align: left;
    padding-right: 40px !important;
  }

  .faq-answer {
    padding: 0 12px;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

/*blog section------------------------------------------------------------------------------*/

.blog-section {
  margin: 0;
  
  background: #f0f2f1;
}

    .blog-section {
      padding: 10px 10px;
      text-align: center;
      position: relative;
    }

    .blog-title {
      font-size: 28px;
      margin-bottom: 30px;
      font-weight: 700;
      color: #333;
    }

    .blog-slider {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .blog-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      width: 80%;
      padding-bottom: 10px;
      scrollbar-width: none;
    }
    .blog-container::-webkit-scrollbar {
      display: none;
    }

   .blog-card {
  flex: 0 0 30%;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  max-height: 350px; /* equal height for all */
}

 .blog-inner {
  position: relative;
  width: 100%;
  height: 100%; /* fill card */
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
    .blog-card.flipped .blog-inner {
      transform: rotateY(180deg);
    }

    .blog-front,
.blog-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.blog-front p,
.blog-back p {
  flex: 1;
  overflow-y: auto;   /* allow scrolling inside */
  max-height: 300px;  /* adjust so button stays visible */
  margin-bottom: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

    .blog-front h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #222;
    }

    .blog-front p {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
    }

    .blog-back {
      transform: rotateY(180deg);
    }

    .read-btn {
      font-size: 14px;
      font-weight: bold;
      background: #ff7b69;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      align-self: flex-start;
    }

    .read-btn:hover {
      background: #ee4d37;
    }
    
.blog-btn {
  background: #d0d4c7;
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-blog {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.left-arrow {
  border-right: 12px solid #ee4d37; /* arrow color */
}

/* Right arrow */
.right-arrow {
  border-left: 12px solid #ee4d37; /* arrow color */
}
    /* Tablet */
    @media (max-width: 1024px) {
      .blog-container {
        width: 90%;
      }
      .blog-card {
        flex: 0 0 45%;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .blog-container {
        width: 95%;
      }
      .blog-card {
        flex: 0 0 100%;
      }
      .blog-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        color: #ee4d37;
      }
      .blog-btn.prev {
        left: 1px;
      }
      .blog-btn.next {
        right: 1px;
      }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
      .blog-btn {
        font-size: 16px;
        padding: 6px 10px;
      }
    }
    
/*Contact us form ---------------------------------------------------------------------------*/
  #contact{
    background-color: #f0f2f1;
  }
  .body{
    background-color: #f0f2f1;
  }
 .instagram-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 15px;
      max-width: 600px;
      margin: 20px auto;
      background: #fff;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }
    .insta-pic {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }
    .insta-info { flex-grow: 1; }
    .insta-info h2 { margin: 0; font-size: 20px; font-weight: 600; }
    .insta-info p { margin: 5px 0; color: #555; }
    .insta-btn {
      display: inline-block; padding: 8px 15px; background: #ff7b69; color: #fff;
      text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s;
    }
    .insta-btn:hover { background: #ee4d37; }
    .insta-logo img { width: 50px; }

/*completed projects and blog heading */

.pricing-heading2 {
  text-align: center;  
  background-color: #f0f2f1;
  padding-top: 0px; 
  padding-bottom: 20px;
}
.pricing-heading2:hover{
  transform: scale(1.03);
}

.pricing-heading2 h1 {
  width: 76%;
  display: inline-block;  /* makes box fit text */
  padding-bottom:5px ;
  padding-top: 5px;
  padding-right: 5px;
  font-size: 25px;
  border-radius: 8px;
  font-weight: bold;
  color: #ee4d37;
  background-color: white;
}

@media (max-width: 1024px) {
  .pricing-heading2 h1 {
    width: 100%;
    padding: 6px 30px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pricing-heading2 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}

@media (max-width: 480px) {
  .pricing-heading2 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}

.pricing-heading3 {
  text-align: center;  
  background-color: #f0f2f1;
  padding-top: 0px; 
  padding-bottom: 10px;
}
.pricing-heading3:hover{
  transform: scale(1.03);
}

.pricing-heading3 h1 {
  width: 60%;
  display: inline-block;  /* makes box fit text */
  padding-bottom:5px ;
  padding-top: 5px;
  font-size: 25px;
  border-radius: 8px;
  font-weight: bold;
  color: #ee4d37;
  background-color: white;
}

@media (max-width: 1024px) {
  .pricing-heading3 h1 {
    width: 100%;
    padding: 6px 30px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pricing-heading3 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}

@media (max-width: 480px) {
  .pricing-heading3 h1 {
    width: 100% !important; /* wider, fit small screens */
    padding: 8px 16px; /* reduce horizontal padding */
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-size: 1.2rem; /* smaller font */
  }
}



/*contact-button-----------------------------------------------------------------*/

#contact-button{
  background-color:#ff7b69;
}
#contact-button:hover {
  background-color: #ee4d37;
}

#contact{
  padding-left: 250px;
}

@media (max-width: 1024px) {
 #contact{
  padding-left: 20px;
 }
}

@media (max-width: 480px) {
  #contact{
  padding-left: 20px;
 }
}


@media (max-width: 768px) {
 #contact{
  padding-left: 20px;
 }
}

/*contact-button-----------------------------------------------------------------*/


.fixed a i {
  font-size: 40px; /* icon size */
  transition: transform 0.3s ease;
 
}

.fixed a:hover i {
  transform: scale(1.2);
}

