 /* Ramdas Section */
 .ramdas-section {
     padding: 20px 0;
 }

 .ramdas-section .about-card {
     /* background: linear-gradient(135deg, #ffffff, #eef2ff); */
     padding: 30px;
     border-radius: 18px;
     /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12); */
     text-align: center;
 }

 .ramdas-section .about-title {
     font-size: 25px;
     font-weight: 700;
     text-transform: capitalize;
     color: #ff931e;
     margin-bottom: 15px;
 }

 /* .ramdas-section .about-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #ff6934;
      margin: 10px auto 0;
      border-radius: 2px;
    } */



 .ramdas-section .about-title span {
     /* color: #ffb00a; */
     color: #e45928;

 }

 .ramdas-section .about-subtitle {
     /* font-size: 18px; */
     /* margin-bottom: 35px; */
     /* letter-spacing: 0.5px; */
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
 }

 .ramdas-section .about-subtitle {
     font-size: 31px;
     margin-bottom: 35px;
     letter-spacing: 0.6px;
     font-weight: 500;
 }

 .ramdas-section .about-subtitle strong {
     color: #383838;
     /* corporate blue */
     font-weight: 700;
 }

 .ramdas-section .subtitle-accent {
     color: #ff931e;
     /* soft professional blue */
     font-weight: 500;
     margin-left: 6px;
 }



 /* Attractive 4-line text */
 .ramdas-section .about-points {
     max-width: 900px;
     margin: 0 auto 45px;
 }

 .ramdas-section .about-points p {
     font-size: 16px;
     color: #444;
     line-height: 1.9;
     margin-bottom: 18px;
     text-align: justify;
 }

 .ramdas-section .about-points p:last-child {
     margin-bottom: 0;
 }

 /* Button Design */
 .ramdas-section .btn-group-custom {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .ramdas-section .btn-custom {
     padding: 12px 38px;
     border-radius: 30px;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .ramdas-section .btn-primary-custom {
     background: linear-gradient(135deg, #1a1616, #1a1a1b);
     color: #fff;
     box-shadow: 0 10px 25px rgba(78, 115, 223, 0.4);

 }

 .ramdas-section .btn-primary-custom:hover {
     transform: translateY(-4px);
     box-shadow: 0 15px 30px rgba(78, 115, 223, 0.6);
     color: #fff;
 }

 /* 2 */


 .ramdas-why-rpi-section {
     /* max-width: 700px; */
     margin: 20px auto;
     padding: 30px;
     width: 100%;
     background: linear-gradient(57deg, #303031, #716d6d);
     color: #fff;
     border-radius: 15px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .ramdas-why-rpi-section h2 {
     text-align: center;
     margin-bottom: 78px;
     font-size: 2rem;
     color: #fff;
     position: relative;
     top: 24px;
 }

 .ramdas-why-rpi-section h2::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: #efad05;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .ramdas-why-rpi-list {
     list-style: none;
     padding: 14px 46px;
     margin: 0;
 }

 .ramdas-why-rpi-item {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px 20px;
     margin-bottom: 15px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateX(-20px);
     animation: slideIn 0.6s forwards;
 }

 .ramdas-why-rpi-item i {
     color: #efad05;
     font-size: 22px;
     min-width: 24px;
     /* keeps text aligned nicely */
 }

 .ramdas-why-rpi-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .ramdas-why-rpi-item:nth-child(2) {
     animation-delay: 0.3s;
 }

 .ramdas-why-rpi-item:nth-child(3) {
     animation-delay: 0.5s;
 }

 .ramdas-why-rpi-item:nth-child(4) {
     animation-delay: 0.7s;
 }

 .ramdas-why-rpi-item:nth-child(5) {
     animation-delay: 0.9s;
 }

 .ramdas-why-rpi-item:nth-child(6) {
     animation-delay: 1.1s;
 }

 .ramdas-why-rpi-item:hover {
     background-color: rgba(255, 255, 255, 0.2);
     transform: translateX(5px);
 }

 .ramdas-why-rpi-icon {
     font-size: 1.8rem;
     flex-shrink: 0;
     transition: transform 0.3s, color 0.3s;
 }

 .ramdas-why-rpi-item:hover .ramdas-why-rpi-icon {
     transform: scale(1.2) rotate(10deg);
     color: #ffcc00;
 }

 .ramdas-why-rpi-text {
     color: #fff;
     font-size: 1rem;
 }

 @keyframes slideIn {
     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Mobile Responsive */
 @media (max-width: 500px) {
     .ramdas-why-rpi-item {
         flex-direction: row;
         gap: 10px;
     }


     .ramdas-why-rpi-list {
         list-style: none;
         padding: 1px 4px;
         margin: 0;
     }

     /* other breadcrumb */


 }


 /* 3 */

 .ramdas-services-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 50px 15px;
 }

 .ramdas-services-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .ramdas-services-header h2 {
     font-size: 2.8rem;
     color: #2c3e50;
     font-weight: 700;
 }

 .ramdas-services-header h2::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: #efad05;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .ramdas-services-header p {
     color: #ff6934;
     font-weight: 600;
     letter-spacing: 1px;
     margin-top: 10px;
     font-size: 1.1rem;
 }

 .ramdas-services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);

     gap: 30px;
 }

 .ramdas-services-grid .ramdas-services-card:nth-child(4) {
     grid-column: 1 / 2;

 }

 .ramdas-services-grid .ramdas-services-card:nth-child(5) {
     grid-column: 2 / 3;
 }

 .ramdas-services-card {
     background: #fff;
     padding: 30px 25px;
     border-radius: 20px;
     text-align: left;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
     transition: transform 0.4s ease,
         box-shadow 0.4s ease,
         background-color 0.4s ease,
         color 0.4s ease;
     border-top: 5px solid transparent;
     position: relative;
     overflow: hidden;
     color: #555;
     cursor: pointer;
 }


 .ramdas-services-card:hover {
     background-color: #ff6934;
     color: #fff;
     transform: translateY(-8px);
     border-top: 5px solid #ff6934;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .ramdas-services-card:hover .ramdas-services-title,
 .ramdas-services-card:hover li,
 .ramdas-services-card:hover li strong {
     color: #fff;
 }

 .ramdas-services-card:hover li::before {
     color: #fff;
 }

 .ramdas-services-card:hover .ramdas-services-icon {
     background-color: #fff;
     color: #ff6934;
     transform: scale(1.2);
 }


 .ramdas-services-icon {
     width: 70px;
     height: 70px;
     background: #e6e9e7;
     color: #ff6934;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 30px;
     transition: all 0.3s ease;
 }


 .ramdas-services-title {
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 15px;
     font-size: 1.4rem;
 }


 .ramdas-services-card ul {
     list-style: none;
     padding-left: 0;
     /* padding-top: 16px; */
 }

 .ramdas-services-card li {
     margin-bottom: 12px;
     font-size: 0.95rem;
     line-height: 1.6;
     position: relative;
     padding-left: 30px;
     color: #474545;
 }

 .ramdas-services-card li::before {
     content: "✔";
     color: #292828;
     position: absolute;
     left: 0;
     top: 0;
     font-size: 1rem;
 }

 .ramdas-services-card li strong {
     display: block;
     color: #222;
     font-weight: 600;
 }


 /* ===== Tablet (max-width: 992px) ===== */
 @media (max-width: 992px) {
     .ramdas-services-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 25px;
     }

     /* Reset custom positioning */
     .ramdas-services-grid .ramdas-services-card:nth-child(4),
     .ramdas-services-grid .ramdas-services-card:nth-child(5) {
         grid-column: auto;
     }

     .ramdas-services-header h2 {
         font-size: 2.3rem;
     }
 }

 /* ===== Mobile (max-width: 576px) ===== */
 @media (max-width: 576px) {
     .ramdas-services-container {
         padding: 30px 10px;
     }

     .ramdas-services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .ramdas-services-header h2 {
         font-size: 1.9rem;
     }


     .ramdas-services-title {
         font-size: 1.2rem;
         margin-top: -65px;
         margin-left: 80px;
         /* adjust as needed */
     }

     .ramdas-services-card ul {
         list-style: none;
         padding-left: 0;
         padding-top: 16px;
     }



     .ramdas-services-icon {
         width: 60px;
         height: 60px;
         font-size: 26px;
     }

     .ramdas-services-card {
         padding: 25px 20px;
     }

     .ramdas-services-card li {
         font-size: 0.9rem;
     }
 }


 /* --- Container & Header --- */

 /* 4 */

 .ramdas-contact-us-section-head {
     margin-bottom: 3.6rem;
     text-align: center;

 }

 .ramdas-contact-us-section-head h4 {
     position: relative;
     padding: 0;
     font-size: 42px;
     font-weight: 700;
     color: #2c2c2c;
     line-height: 1;
     letter-spacing: 0.3px;
     font-size: clamp(1.8rem, 4vw, 2.125rem);
     font-weight: 700;
     text-transform: none;
     margin-bottom: 2rem;
 }

 .ramdas-contact-us-section-head h4::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: #efad05;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .ramdas-contact-us-section-head h4 span {
     font-weight: 700;
     padding-bottom: 5px;
     color: #1a1919;
 }


 /* 5 */


 .enquiry-section {
     padding: 60px 0;
     text-align: center;
     background: linear-gradient(135deg, #f78b04, #ed1c24);
     color: #fff;
     /* border-radius: 10px; */
 }

 .enquiry-content h2 {
     font-size: 32px;
     color: #fff;
     font-weight: 700;
     margin-bottom: 10px;

 }

 .enquiry-content p {
     font-size: 18px;
     margin-bottom: 25px;
 }

 /* === Row Styling === */
 .enquiry-row {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 25px;
     flex-wrap: wrap;
 }

 /* === Email + Phone Items === */
 .enquiry-item {
     display: flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 255, 255, 0.15);
     padding: 12px 20px;
     border-radius: 8px;
     backdrop-filter: blur(2px);
     transition: 0.3s ease;
 }

 .enquiry-item:hover {
     background: rgba(255, 255, 255, 0.25);
 }

 .enquiry-item i {
     font-size: 20px;
     color: #f9d423;
 }

 .enquiry-item a {
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
 }

 /* === Enquire Button === */
 .enquiry-btn {
     background: linear-gradient(135deg, #f78b04, #0fd8d8);
     color: #fff;
     padding: 12px 25px;
     border-radius: 8px;
     display: inline-block;
     transition: 0.3s ease;
     font-weight: 600;
     text-decoration: none;
 }


 .enquiry-btn:hover {
     color: #fff;
     /* opacity: 0.85; */
 }