 /* --- ROOT COLOR THEME (Unnoda Colors Inga Irukku) --- */
 :root {
     --primary-color: #952014;
     --secondary-color: #3a4736;
     --white-color: #ffffff;
     --black-color: #000000;
     --light-bg: #f8f9fa;
 }

 /* --- General Styles --- */
 body {
     font-family: "Geom", sans-serif;
     background-color: #f4f4f4;
     color: var(--black-color);
     overflow-x: hidden;
 }

 @import url('https://fonts.googleapis.com/css2?family=Geom:ital,wght@0,300..900;1,300..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
      font-family: "Geom", sans-serif;
     font-weight: 800;
 }

 a {
     text-decoration: none !important;
 }

 /* --- 1. Top Header Design --- */
 .top-header {
     background-color: var(--secondary-color);
     /* Green Background */
     color: var(--white-color);
     padding: 10px 0;
     /* Konjam space increase panniruken */
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s ease;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* --- COMMON ICON CIRCLE DESIGN --- */
 .icon-box {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     /* Fixed Width */
     height: 32px;
     /* Fixed Height */
     border: 1px solid rgba(255, 255, 255, 0.3);
     /* Light White Border */
     border-radius: 50%;
     /* Perfect Circle */
     font-size: 13px;
     transition: all 0.4s ease;
     color: var(--white-color);
     background-color: rgba(255, 255, 255, 0.05);
     /* Slight Glass Effect */
 }

 /* --- SOCIAL LINK SPECIFIC STYLES --- */
 .social-link {
     text-decoration: none;
     margin-left: 8px;
     /* Gap between social icons */
     display: inline-block;
 }

 /* Hover Effect for Social Icons (Rotate + Red BG) */
 .social-link:hover .icon-box {
     background-color: var(--primary-color);
     /* Changes to Red */
     border-color: var(--primary-color);
     color: var(--white-color);
     transform: rotate(360deg);
     /* Massana Spin Animation */
     box-shadow: 0 0 10px rgba(149, 32, 20, 0.6);
     /* Glow Effect */
 }

 /* Contact Text Adjustment */
 .contact-info span {
     letter-spacing: 0.5px;
 }

 /* --- 2. Bottom Navbar Design --- */
 .bottom-navbar {
     background-color: var(--white-color);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 /* --- NAVBAR BRAND STYLING --- */

 .logo-img {
     height: 65px;
     width: auto;
     object-fit: contain;
     transition: 0.3s;
 }

 /* 2. Text Box Container */
 .brand-text-box {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
 }

 /* 3. Tamil Name Styling */
 .brand-title {
     font-size: 24px;
     font-weight: 800;
     color: var(--primary-color) !important;
     margin: 0;
     line-height: 1;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
 }

 /* 4. The Magic Fading Border (Divider) */
 .brand-divider {
     width: 100%;
     height: 2px;
     margin: 4px 0;
     /* Gap between text and line */
     background: rgb(255, 255, 255);
     /* Linear Gradient: Transparent -> Red -> Transparent */
     background: linear-gradient(90deg,
             rgba(255, 255, 255, 0) 0%,
             var(--primary-color) 50%,
             rgba(255, 255, 255, 0) 100%);
     opacity: 0.8;
 }

 /* 5. English Tagline Styling */
 .brand-tagline {
     font-size: 9px;
     /* Chinna size la iruntha than azhagu */
     font-weight: 700;
     color: var(--black-color);
     margin: 0;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     line-height: 1.2;
 }

 .get-started-button {
     background-color: var(--primary-color) !important;
     color: var(--white-color) !important;
 }

 /* --- RESPONSIVE ADJUSTMENTS (Mobile View) --- */
 @media (max-width: 991px) {

     /* Reduce Logo Size */
     .logo-img {
         height: 50px;
     }

     /* Reduce Tamil Font */
     .brand-title {
         font-size: 18px;
     }

     /* Reduce Tagline Font */
     .brand-tagline {
         font-size: 7px;
         /* Mobile la romba perusa irunda nalla irukadhu */
         letter-spacing: 0;
         max-width: 200px;
         /* Text wrap aaga vidum */
         white-space: normal;
     }

     /* Adjust Navbar Padding */
     .navbar-brand {
         margin-right: 0;
         /* Gap adjust */
     }
 }

 /* =========================================
   LAPTOP & SMALL DESKTOP RESPONSIVE FIX
   (Screen Width: 992px to 1350px)
   ========================================= */
 @media (min-width: 992px) and (max-width: 1350px) {

     /* 1. Navbar Container Padding */
     .bottom-navbar {
         padding: 5px 0;
         /* Space saving */
     }

     /* 2. Shrink Logo & Brand Text */
     .logo-img {
         height: 45px;
         /* Reduced from 65px */
     }

     .brand-text-box {
         margin-left: 5px !important;
         /* Reduce gap between logo and text */
     }

     .brand-title {
         font-size: 18px;
         /* Reduced from 24px */
         margin-bottom: 2px;
     }

     .brand-divider {
         margin: 2px 0;
     }

     .brand-tagline {
         font-size: 7px;
         /* Reduced from 9px */
         line-height: 1.1;
         max-width: 180px;
         /* Restrict width */
         white-space: normal;
         /* Allow text to wrap if needed */
     }

     /* 3. Adjust Menu Links (The main fix) */
     .navbar-nav {
         align-items: center;
     }

     .nav-link {
         font-size: 12px !important;
         /* Smaller font */
         margin: 0 4px !important;
         /* Reduce gap between links */
         padding: 8px 5px !important;
     }

     /* Active Link Padding */
     .nav-link.active {
         padding: 5px 10px !important;
         margin: 0 4px !important;
     }

     /* 4. Adjust Get Started Button */
     .get-started-button {
         font-size: 12px;
         padding: 8px 15px !important;
         margin-left: 5px !important;
         /* Reduce gap from menu */
     }
 }

 @media (max-width: 400px) {

     /* Very Small Screens */
     .logo-img {
         height: 30px !important;
     }

     .brand-title {
         font-size: 15px;
     }

     .brand-tagline {
         font-size: 6px;
     }
 }

 /* Desktop Menu Links */
 .nav-link {
     color: var(--secondary-color) !important;
     font-weight: 700 !important;
     position: relative;
     margin: 0 10px;
     text-transform: uppercase;
      font-family: "Geom", sans-serif;
 }

 /* ACTIVE STATE */
 .nav-link.active {
     background-color: var(--primary-color);
     color: var(--white-color) !important;
     padding-left: 20px;
     padding-right: 20px;
     font-weight: 700;
     box-shadow: 0 4px 10px rgba(149, 32, 20, 0.4);
     border-radius: 10px;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--primary-color);
     transition: width 0.3s;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 /* --- 3. Custom Mobile Toggle --- */
 .custom-toggler {
     border: none;
     background: transparent;
     cursor: pointer;
     padding: 10px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 6px;
 }

 .line {
     height: 3px;
     background-color: var(--secondary-color);
     border-radius: 5px;
     transition: all 0.4s ease;
 }

 .line-1 {
     width: 25px;
 }

 .line-2 {
     width: 35px;
     background-color: var(--primary-color);
 }

 .line-3 {
     width: 25px;
 }

 .custom-toggler:hover .line-1 {
     width: 35px;
 }

 .custom-toggler:hover .line-2 {
     width: 45px;
 }

 .custom-toggler:hover .line-3 {
     width: 35px;
 }

 /* --- Offcanvas Styling --- */
 .offcanvas {
     background-color: var(--secondary-color);
     color: var(--white-color);
 }

 .offcanvas-header .btn-close {
     background-color: var(--white-color);
     filter: invert(1);
 }

 .mobile-nav-link {
     color: var(--primary-color);
     font-size: 18px;
     padding: 12px 15px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     display: block;
     text-decoration: none;
     border-radius: 8px;
     transition: all 0.3s ease;
     margin-bottom: 5px;
 }

 .mobile-nav-link:hover {
     background-color: rgba(255, 255, 255, 0.1);
     color: #ffcccc;
     /* Light red for text on hover */
     padding-left: 25px;
 }

 .mobile-nav-link.active {
     background-color: var(--primary-color);
     color: var(--white-color);
     padding-left: 25px;
     font-weight: 700;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 /* --- Banner Section --- */
 .contact-banner-section {
     position: relative;
     height: 350px;
     width: 100%;
     overflow: hidden;
 }

 .banner-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     z-index: 1;
 }

 .banner-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(58, 71, 54, 0.85);
     /* Secondary Color with Opacity */
     z-index: 2;
 }

 .watermark-text {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 6rem;
     font-weight: 900;
     text-transform: uppercase;
     color: transparent;
     -webkit-text-stroke: 2px rgba(255, 255, 255, 0.767);
     white-space: nowrap;
     z-index: 3;
     opacity: 0;
     animation: slowWatermarkLoad 2.5s ease-out forwards;
 }

 @keyframes slowWatermarkLoad {
     0% {
         opacity: 0;
         transform: translate(-50%, -50%) scale(0.8);
         letter-spacing: 0px;
     }

     100% {
         opacity: 1;
         transform: translate(-50%, -50%) scale(1);
         letter-spacing: 10px;
     }
 }

 @media (max-width: 768px) {
     .watermark-text {
         font-size: 3.5rem;
     }

     .contact-banner-section {
         height: 250px;
     }
 }

 @media(max-width:425px) {
     .watermark-text {
         font-size: 20px;
     }
 }

 /* --- Info Cards Section --- */
 .contact-info-section {
     background-color: #f9f9f9;
     padding: 60px 0;
 }

 .contact-card {
     background: var(--white-color);
     padding: 40px 30px;
     text-align: center;
     border-bottom-left-radius: 50px;
     /* Stylish corner */
     border-top-right-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
     height: 100%;
     border-bottom: 3px solid transparent;
     animation: cardFadeUp 1s ease-out forwards;
     opacity: 0;
     border-bottom: 3px solid var(--primary-color);
 }

 .contact-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(149, 32, 20, 0.15);
     /* Red Glow */
     border-bottom: 3px solid var(--secondary-color);
 }

 .icon-wrapper {
     width: 80px;
     height: 80px;
     background-color: rgba(149, 32, 20, 0.1);
     /* Light Primary BG */
     color: var(--primary-color);
     font-size: 32px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 25px auto;
     transition: all 0.4s ease;
 }

 .contact-card:hover .icon-wrapper {
     background-color: var(--primary-color);
     color: var(--white-color);
     transform: rotateY(360deg);
 }

 .contact-card h3 {
     color: var(--secondary-color);
     margin-bottom: 15px;
 }

 @keyframes cardFadeUp {
     0% {
         opacity: 0;
         transform: translateY(30px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* --- Contact Form Section --- */
 .contact-form-section {
     background-color: var(--light-bg);
     overflow: hidden;
 }

 .contact-box-card {
     background: var(--white-color);
     padding: 40px;
     margin-bottom: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .sub-heading {
     color: var(--primary-color);
     font-size: 14px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     display: block;
 }

 .section-title {
     color: var(--secondary-color);
     font-size: 32px;
     font-weight: 800;
     margin-bottom: 15px;
 }

 .custom-input-wrapper {
     position: relative;
 }

 .input-icon {
     position: absolute;
     left: 18px;
     top: 50%;
     transform: translateY(-50%);
     color: #aaa;
     font-size: 16px;
     z-index: 10;
     transition: 0.3s;
 }

 .textarea-icon {
     top: 22px;
     transform: none;
 }

 .form-control {
     background-color: #f9f9f9;
     border: 1px solid #eeeeee;
     padding: 16px 15px 16px 50px !important;
     font-size: 15px;
     border-radius: 10px;
     color: #333;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     background-color: var(--white-color);
     border-color: var(--primary-color);
     box-shadow: 0 5px 15px rgba(149, 32, 20, 0.1);
 }

 .custom-input-wrapper:focus-within .input-icon {
     color: var(--primary-color);
 }

 .btn-submit {
     background-color: var(--secondary-color) !important;
     color: var(--white-color) !important;
     padding: 18px !important;
     font-weight: 700;
     font-size: 16px;
     border-radius: 10px;
     border: none;
     transition: 0.4s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn-submit:hover {
     background-color: var(--primary-color) !important;
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(149, 32, 20, 0.3);
 }

 /* --- Image Stack --- */
 .image-stack-wrapper {
     position: relative;
     padding: 20px;
     height: 500px;
     display: flex;
     align-items: center;
 }

 .img-box {
     position: absolute;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     transition: transform 0.5s ease;
 }

 .back-img {
     width: 100%;
     height: 100%;
     top: 0;
     right: 0;
     z-index: 1;
     animation: floatImage 6s ease-in-out infinite;
 }

 .front-img {
     width: 55%;
     height: 300px;
     bottom: 10px;
     left: -50px;
     z-index: 2;
     border: 8px solid var(--white-color);
     animation: floatImage 6s ease-in-out infinite reverse;
 }

 .circle-bg {
     position: absolute;
     top: -20px;
     right: -20px;
     width: 150px;
     height: 150px;
     background-color: rgba(149, 32, 20, 0.1);
     /* Light Primary */
     border-radius: 50%;
     z-index: 0;
 }

 .dots-pattern {
     position: absolute;
     bottom: 0;
     right: 20px;
     color: var(--primary-color);
     font-size: 10px;
     z-index: 3;
     opacity: 0.5;
 }

 .image-stack-wrapper:hover .back-img,
 .image-stack-wrapper:hover .front-img {
     transform: scale(1.02);
 }

 @keyframes floatImage {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 @media (max-width: 991px) {
     .image-stack-wrapper {
         height: 400px;
     }

     .back-img {
         width: 80%;
         height: 300px;
     }

     .front-img {
         width: 60%;
         height: 250px;
         bottom: 0;
         left: 0;
     }
 }

 /* --- GALLERY SECTION STYLING --- */
 .gallery-section {
     padding: 80px 0;
     background-color: var(--white-color);
 }

 /* 1. Masonry Grid */
 .masonry-grid {
     column-count: 3;
     column-gap: 24px;
 }

 /* 2. Gallery Item */
 .gallery-item {
     break-inside: avoid;
     margin-bottom: 24px;
     border-radius: 16px;
     overflow: hidden;
     position: relative;
     transform: translateZ(0);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     opacity: 0;
     animation: fadeUpMasonry 0.8s ease-out forwards;
 }

 /* Stagger Animation */
 .gallery-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .gallery-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .gallery-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .gallery-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 .gallery-item:nth-child(5) {
     animation-delay: 0.5s;
 }

 .gallery-item:nth-child(6) {
     animation-delay: 0.6s;
 }

 /* 3. Image Styling */
 .img-wrapper {
     position: relative;
     overflow: hidden;
     border-radius: 16px;
     background: #000;
 }

 .img-wrapper img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 /* 4. Overlay Styling */
 .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2), transparent);
     opacity: 0;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 25px;
     transition: all 0.4s ease;
     z-index: 2;
 }

 .category {
     color: var(--primary-color);
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: block;
     margin-bottom: 5px;
 }

 .overlay h5 {
     color: #fff;
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 15px;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 /* View Button (Trigger for Modal) */
 .view-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 45px;
     background-color: var(--white-color);
     color: var(--primary-color);
     border-radius: 50%;
     border: none;
     cursor: pointer;
     transition: 0.3s;
     font-size: 16px;
 }

 .view-btn:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
     transform: scale(1.1);
 }

 /* Hover Actions */
 .img-wrapper:hover img {
     transform: scale(1.1) rotate(1deg);
     opacity: 0.9;
 }

 .img-wrapper:hover .overlay {
     opacity: 1;
 }

 .img-wrapper:hover .overlay .content {
     transform: translateY(0);
 }

 .overlay .content {
     transform: translateY(20px);
     transition: transform 0.4s ease;
 }

 /* Titles */
 .sub-heading {
     color: var(--primary-color);
     font-weight: 700;
     font-size: 16px;
     text-transform: uppercase;
 }

 .section-title {
     color: var(--secondary-color);
     font-weight: 800;
     font-size: 36px;
 }

 .title-line {
     width: 80px;
     height: 4px;
     background: var(--primary-color);
     border-radius: 2px;
     margin-top: 15px;
 }

 @keyframes fadeUpMasonry {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* --- CUSTOM MODAL STYLES (LightBox) --- */
 .custom-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.95);
     /* Deep Black BG */
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
     backdrop-filter: blur(5px);
 }

 .custom-modal.active {
     opacity: 1;
     visibility: visible;
 }

 /* Modal Controls (Icons) */
 .modal-controls {
     position: absolute;
     top: 20px;
     right: 30px;
     z-index: 10000;
     display: flex;
     gap: 15px;
 }

 .modal-controls button,
 .modal-controls a {
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.2);
     width: 45px;
     height: 45px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: 0.3s;
     font-size: 18px;
     text-decoration: none;
 }

 .modal-controls button:hover,
 .modal-controls a:hover {
     background: var(--primary-color);
     border-color: var(--primary-color);
     transform: scale(1.1);
 }

 .close-btn:hover {
     background: #ff3333 !important;
     /* Specific Red for Close */
     border-color: #ff3333 !important;
 }

 /* Image Wrapper in Modal */
 .modal-content-wrapper {
     position: relative;
     max-width: 90%;
     max-height: 85%;
     text-align: center;
 }

 #modalImage {
     max-width: 100%;
     max-height: 80vh;
     border-radius: 8px;
     box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
     transition: transform 0.3s ease;
     /* Smooth Zoom */
     cursor: grab;
 }

 /* Zoomed State */
 #modalImage.zoomed {
     transform: scale(1.5);
     /* 1.5x Zoom */
     cursor: zoom-out;
 }

 #modalCaption {
     color: #fff;
     margin-top: 15px;
     font-size: 18px;
     font-weight: 600;
     letter-spacing: 1px;
 }

 /* --- RESPONSIVE CSS --- */
 @media (max-width: 991px) {
     .masonry-grid {
         column-count: 2;
         column-gap: 20px;
     }
 }

 @media (max-width: 576px) {
     .masonry-grid {
         column-count: 1;
     }

     .modal-controls {
         top: 15px;
         right: 15px;
         gap: 10px;
     }

     .modal-controls button,
     .modal-controls a {
         width: 40px;
         height: 40px;
         font-size: 16px;
     }
 }

 /* --- CTA SECTION STYLING (Green Theme) --- */
 .cta-section {
     padding: 100px 0;
     /* Konjam extra padding for premium look */
     position: relative;
     background-color: var(--secondary-color);
     /* GREEN BACKGROUND */
     overflow: hidden;
 }

 /* Background Pattern on the Green Section */
 .section-pattern {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
     background-size: 30px 30px;
     z-index: 0;
 }

 /* 1. The Main Wrapper (Now White Card Floating) */
 .cta-wrapper {
     background-color: var(--white-color);
     /* WHITE CARD */
     border-radius: 20px;
     padding: 60px 50px;
     position: relative;
     overflow: hidden;
     /* Deep Shadow to separate from Green BG */
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
     z-index: 1;
     transition: transform 0.4s ease;
     border: 5px solid rgba(255, 255, 255, 0.1);
     /* Subtle outer rim */
 }

 /* Hover Effect on the whole card */
 .cta-wrapper:hover {
     transform: translateY(-8px);
     /* Higher lift */
 }

 /* 2. Animated Background Rings (Subtle inside White Card) */
 .shape-ring {
     position: absolute;
     border-radius: 50%;
     z-index: 0;
     animation: rotateRing 25s linear infinite;
 }

 .ring-1 {
     width: 350px;
     height: 350px;
     top: -80px;
     right: -50px;
     /* Red Dashed Line (Subtle) */
     border: 2px dashed rgba(149, 32, 20, 0.2);
 }

 .ring-2 {
     width: 550px;
     height: 550px;
     bottom: -150px;
     left: -100px;
     /* Green Solid Line (Very Subtle) */
     border: 1px solid rgba(58, 71, 54, 0.1);
     animation-direction: reverse;
 }

 /* 3. Typography (Adapted for White Background) */
 .cta-subtitle {
     color: var(--primary-color);
     /* Red */
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 12px;
     display: block;
 }

 .cta-title {
     color: var(--secondary-color);
     /* Dark Green Text */
     font-size: 34px;
     font-weight: 800;
     line-height: 1.3;
     margin-bottom: 15px;
 }

 .cta-desc {
     color: #666;
     /* Grey Text */
     font-size: 16px;
     margin-bottom: 0;
     font-weight: 500;
 }

 /* 4. The 3D Button Design (Green Button to Pop on White) */
 .cta-btn-3d {
     display: inline-flex;
     align-items: center;
     justify-content: space-between;
     background-color: var(--secondary-color);
     /* Green Button */
     color: var(--white-color);
     padding: 12px 12px 12px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 15px;
     transition: all 0.4s ease;
     box-shadow: 0 10px 20px rgba(58, 71, 54, 0.3);
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 /* The Circle Icon inside Button */
 .icon-circle {
     width: 45px;
     height: 45px;
     background-color: var(--white-color);
     /* White Circle */
     color: var(--secondary-color);
     /* Green Icon */
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 20px;
     transition: all 0.4s ease;
 }

 /* HOVER EFFECT ON BUTTON */
 .cta-btn-3d:hover {
     background-color: var(--primary-color);
     /* Turns RED on Hover */
     color: var(--white-color);
     box-shadow: 0 15px 30px rgba(149, 32, 20, 0.4);
     /* Red Shadow */
     transform: translateY(-3px);
 }

 .cta-btn-3d:hover .icon-circle {
     background-color: rgba(255, 255, 255, 0.2);
     /* Semi-transparent White */
     color: var(--white-color);
     /* White Icon */
     transform: rotate(360deg);
     /* Spins */
 }

 /* 5. Animations */
 @keyframes rotateRing {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* --- RESPONSIVE ADJUSTMENTS --- */
 @media (max-width: 991px) {
     .cta-wrapper {
         padding: 40px 25px;
         text-align: center;
     }

     .cta-title {
         font-size: 26px;
     }

     .cta-btn-3d {
         margin-top: 20px;
     }

     .ring-1 {
         top: -100px;
         right: -100px;
     }
 }


 /* --- PRODUCT SHOWCASE STYLING --- */
 .product-showcase-section {
     padding: 80px 0;
     background-color: var(--light-bg);
 }

 /* --- SECTION DESCRIPTION STYLING --- */
 .section-desc {
     color: #666;
     /* Grey color for description */
     font-size: 16px;
     font-weight: 500;
     line-height: 1.6;
     margin-top: 15px;
     margin-bottom: 20px;

     /* Center align and limit width for 2-line look */
     /* max-width: 2000px !important; */
     margin-left: auto;
     margin-right: auto;
 }

 /* Optional: Make text slightly smaller on mobile */
 @media (max-width: 768px) {
     .section-desc {
         font-size: 14px;
         padding: 0 15px;
         /* Side padding for mobile */
     }
 }

 /* 1. Card Container */
 .clean-product-card {
     background: var(--white-color);
     border-radius: 20px;
     /* Reference Image Rounded Look */
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
     border: 1px solid rgba(0, 0, 0, 0.02);
 }

 .clean-product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 /* 2. Image Area (Dark Background like Reference) */
 .clean-img-box {
     background-color: var(--secondary-color);
     /* Dark Green BG */
     height: 320px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 20px 20px 40px 40px;
     /* Stylish Curve at bottom */
     margin-bottom: 10px;
 }

 /* Badge Styling */
 .discount-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background-color: #ff9f43;
     /* Orange like reference */
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 4px;
     z-index: 2;
 }

 .discount-badge.new {
     background-color: var(--primary-color);
 }

 /* Image Styling */
 .clean-img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 0.5s ease;
     filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
     /* Shadow for Shoe */
 }

 /* Hover: Float Shoe */
 .clean-product-card:hover .clean-img {
     transform: scale(1.1) rotate(-10deg);
 }

 /* 3. Content Area */
 .clean-content {
     padding: 15px 20px 25px 20px;
 }

 .clean-cat {
     color: #888;
     font-size: 12px;
     text-transform: uppercase;
     font-weight: 600;
     margin-bottom: 5px;
 }

 .clean-title {
     color: var(--black-color);
     font-size: 18px;
     font-weight: 800;
     margin-bottom: 5px;
 }

 .clean-price {
     color: var(--primary-color);
     /* Red Price */
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 /* 4. Action Buttons (Row) */
 .clean-actions {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /* View Details Button (Big) */
 .btn-view-details {
     flex-grow: 1;
     /* Takes max space */
     background-color: var(--secondary-color);
     /* Green */
     color: var(--white-color);
     text-align: center;
     padding: 12px 0;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 700;
     font-size: 14px;
     text-transform: uppercase;
     transition: 0.3s;
 }

 .btn-view-details:hover {
     background-color: var(--primary-color);
     /* Red on Hover */
     color: var(--white-color);
 }

 /* Modal Icon Button (Small) */
 .btn-icon-modal {
     width: 48px;
     height: 48px;
     background-color: var(--white-color);
     border: 2px solid #eee;
     border-radius: 8px;
     color: var(--secondary-color);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: 0.3s;
     font-size: 16px;
 }

 .btn-icon-modal:hover {
     background-color: var(--primary-color);
     /* Red */
     border-color: var(--primary-color);
     color: var(--white-color);
 }

 /* --- MODAL STYLING --- */
 .product-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.85);
     /* Dark Overlay */
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
 }

 .product-modal-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .product-modal-content {
     position: relative;
     max-width: 80%;
     max-height: 80%;
 }

 .product-modal-content img {
     max-width: 100%;
     max-height: 80vh;
     border-radius: 10px;
     box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
     transform: scale(0.8);
     transition: transform 0.3s ease;
 }

 .product-modal-overlay.active img {
     transform: scale(1);
     /* Zoom In Effect */
 }

 .close-modal-btn {
     position: absolute;
     top: -50px;
     right: -50px;
     background: transparent;
     border: 2px solid var(--white-color);
     color: var(--white-color);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     transition: 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .close-modal-btn:hover {
     background: var(--primary-color);
     border-color: var(--primary-color);
     transform: rotate(90deg);
 }

 /* Responsive Modal Close Button */
 @media(max-width: 768px) {
     .close-modal-btn {
         top: -50px;
         right: 0;
     }
 }

 /* --- ABOUT SECTION STYLING --- */
 .about-section {
     padding: 50px 0;
     background-color: var(--white-color);
     overflow: hidden;
     /* To keep animations inside */
 }

 /* 1. IMAGE WRAPPER */
 .about-img-wrapper {
     position: relative;
     padding-right: 30px;
     /* Space for the floating circle */
     padding-bottom: 30px;
 }

 /* 2. ARCH SHAPE (The Main Image) */
 .arch-img-box {
     width: 95%;
     /* Not full width to allow overlap */
     height: 600px;
     /* Fixed height for shape */
     border-radius: 300px 300px 0 0;
     /* THE ARCH SHAPE */
     overflow: hidden;
     position: relative;
     z-index: 1;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .main-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 /* 3. CIRCLE IMAGE (The Floating Overlay) */
 .circle-img-box {
     width: 220px;
     height: 220px;
     border-radius: 50%;
     /* Perfect Circle */
     border: 10px solid var(--white-color);
     /* Thick White Border */
     position: absolute;
     bottom: -30px;
     left: -30px;
     overflow: hidden;
     z-index: 2;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

     /* Animation: Float Up & Down */
     animation: floatImage 4s ease-in-out infinite;
 }

 .small-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 /* 4. HOVER EFFECTS */
 /* Zoom Main Image */
 .about-img-wrapper:hover .main-img {
     transform: scale(1.1);
 }

 /* Rotate Small Image */
 .about-img-wrapper:hover .small-img {
     transform: scale(1.1) rotate(5deg);
 }

 /* 5. PATTERN DOTS (Decoration) */
 .about-pattern {
     position: absolute;
     bottom: -20px;
     left: -20px;
     width: 150px;
     height: 150px;
     background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
     background-size: 20px 20px;
     z-index: 0;
     opacity: 0.3;
 }

 /* 6. CONTENT STYLING */
 .highlight-text {
     color: var(--primary-color);
     /* Red Highlight */
     position: relative;
     display: inline-block;
 }

 /* Underline for highlight text */
 .highlight-text::after {
     content: '';
     position: absolute;
     bottom: 5px;
     left: 0;
     width: 100%;
     height: 8px;
     background-color: rgba(58, 71, 54, 0.1);
     /* Light Green */
     z-index: -1;
 }

 .about-desc {
     color: #555;
     font-size: 16px;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 /* Features List */
 .about-features {
     list-style: none;
     padding: 0;
     margin: 20px 0;
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
 }

 .about-features li {
     font-size: 15px;
     font-weight: 700;
     color: var(--secondary-color);
     display: flex;
     align-items: center;
     width: 48%;
     /* 2 columns on desktop */
 }

 .about-features li i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 18px;
 }

 /* Button */
 .about-btn {
     display: inline-flex;
     align-items: center;
     padding: 12px 30px;
     background-color: var(--primary-color);
     color: var(--white-color);
     font-weight: 700;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 5px;
     transition: all 0.3s ease;
     border: 2px solid var(--primary-color);
 }

 .about-btn:hover {
     background-color: transparent;
     color: var(--primary-color);
     padding-right: 40px;
     /* Slide effect */
 }

 /* Animation Keyframe */
 @keyframes floatImage {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 /* --- RESPONSIVE ADJUSTMENTS --- */
 @media (max-width: 991px) {
     .about-img-wrapper {
         margin-bottom: 50px;
         text-align: center;
         padding-right: 0;
     }

     .arch-img-box {
         width: 100%;
         /* Full width on mobile */
         height: 400px;
         border-radius: 200px 200px 0 0;
     }

     .circle-img-box {
         width: 150px;
         height: 150px;
         right: 10px;
         bottom: -20px;
         /* Adjust position for mobile */
     }

     .about-features li {
         width: 100%;
         /* 1 column list on mobile */
     }

     .ps-lg-4 {
         padding-left: 0 !important;
     }
 }

 /* --- MISSION & VISION SECTION STYLING --- */
 .mission-vision-section {
     position: relative;
     padding: 100px 0;
     overflow: hidden;
 }

 /* 1. Background Image Setup */
 .mv-bg-img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     z-index: 0;
 }

 /* 2. Overlay (Secondary Color with Opacity) */
 .mv-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--secondary-color);
     opacity: 0.92;
     z-index: 1;
 }

 /* 3. Common Card Styling */
 .mv-card {
     padding: 40px 30px;
     border-radius: 20px;
     text-align: center;
     position: relative;
     transition: all 0.4s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Hover Effect: Lift Up */
 .mv-card:hover {
     transform: translateY(-10px);
 }

 /* --- VISION CARD (Left - White Theme) --- */
 .vision-card {
     background: var(--white-color);
     /* WHITE BACKGROUND */
     /* Shape: Rounded on Left, Flat on Right */
     border-radius: 50px 10px 10px 50px;
     margin-right: -20px;
 }

 /* Vision Text Colors (Default) */
 .vision-card .mv-title {
     color: var(--secondary-color);
 }

 .vision-card .mv-desc {
     color: #555;
 }

 /* Vision Icon Colors (Default: Green Bg, White Icon) */
 .vision-card .icon-circle {
     background-color: var(--secondary-color);
     color: var(--white-color);
 }

 /* VISION CARD HOVER (Turns Green) */
 .vision-card:hover {
     background: var(--secondary-color);
     /* Green on Hover */
     box-shadow: 0 15px 40px rgba(58, 71, 54, 0.5);
     border-color: var(--secondary-color);
 }

 .vision-card:hover .mv-title,
 .vision-card:hover .mv-desc {
     color: var(--white-color);
     /* Text turns White */
 }

 .vision-card:hover .icon-circle {
     background-color: var(--white-color);
     color: var(--secondary-color);
     /* Icon turns Green */
 }


 /* --- MISSION CARD (Right - Red Theme) --- */
 /* Keeps existing Red styling */
 .mission-card {
     background: rgba(149, 32, 20, 0.8);
     color: var(--white-color);
     border-radius: 10px 50px 50px 10px;
     margin-left: -20px;
 }

 .mission-card:hover {
     background: var(--primary-color);
     box-shadow: 0 15px 40px rgba(149, 32, 20, 0.5);
 }

 /* 4. Icon Circle Base */
 .icon-circle {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     transition: 0.4s;
 }

 /* Mission Icon Colors */
 .mission-card .icon-circle {
     background-color: var(--white-color);
     color: var(--primary-color);
 }

 /* Hover: Icon Spin */
 .mv-card:hover .icon-circle {
     transform: rotate(360deg) scale(1.1);
 }

 /* 5. Typography */
 .mv-title {
     font-size: 24px;
     font-weight: 800;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: color 0.3s;
 }

 .mv-desc {
     font-size: 15px;
     line-height: 1.6;
     transition: color 0.3s;
 }

 /* 6. CENTER IMAGE (Pill Shape) */
 .center-image-wrapper {
     position: relative;
     width: 100%;
     max-width: 350px;
     height: 450px;
     margin: 0 auto;
     z-index: 5;
 }

 .center-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 200px;
     border: 5px solid rgba(255, 255, 255, 0.2);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     transition: transform 0.5s ease;
 }

 .center-image-wrapper {
     animation: floatVertical 4s ease-in-out infinite;
 }

 .pulse-ring {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 100%;
     height: 100%;
     border-radius: 200px;
     border: 2px solid var(--white-color);
     opacity: 0;
     animation: pulseRing 3s infinite;
     z-index: -1;
 }

 /* --- ANIMATIONS --- */
 @keyframes floatVertical {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 @keyframes pulseRing {
     0% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0.5;
     }

     100% {
         transform: translate(-50%, -50%) scale(1.15);
         opacity: 0;
     }
 }

 /* --- RESPONSIVE ADJUSTMENTS --- */
 @media (max-width: 991px) {

     .vision-card,
     .mission-card {
         margin: 0;
         border-radius: 20px;
     }

     .center-image-wrapper {
         height: 300px;
         max-width: 300px;
         margin-bottom: 30px;
     }

     .order-lg-1 {
         order: 2 !important;
     }

     .order-lg-2 {
         order: 1 !important;
     }

     .order-lg-3 {
         order: 3 !important;
     }
 }

 /* --- COUNTER SECTION STYLING --- */
 .counter-section {
     padding: 80px 0;
     background-color: var(--light-bg);
 }

 /* 1. Wrapper (The Outer Border Box) */
 .counter-wrapper {
     position: relative;
     padding: 20px;
     border: 1px solid rgba(0, 0, 0, 0.1);
     /* Thin Outer Border */
     border-radius: 20px;
     /* Rounded Corners for Outer Box */
     transition: all 0.4s ease;
 }

 /* 2. The "L" Shape Accent (Thick Corner) */
 .corner-accent {
     position: absolute;
     bottom: -3px;
     /* Slightly outside */
     left: -3px;
     /* Slightly outside */
     width: 60px;
     /* Width of the L bottom */
     height: 60px;
     /* Height of the L side */
     border-bottom: 8px solid;
     /* Thick Bottom Line */
     border-left: 8px solid;
     /* Thick Left Line */
     border-bottom-left-radius: 20px;
     /* Rounded Corner matching wrapper */
     z-index: 1;
     transition: all 0.4s ease;
 }

 /* 3. Inner Card (White Floating Box) */
 .inner-card {
     background-color: var(--white-color);
     padding: 30px 20px;
     text-align: center;
     border-radius: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     position: relative;
     z-index: 2;
     transition: transform 0.4s ease;
 }

 /* 4. Color Themes */
 /* Primary (Red) Theme */
 .primary-theme .corner-accent {
     border-color: var(--primary-color);
 }

 .primary-theme .icon-box {
     color: var(--primary-color);
 }

 .primary-theme:hover {
     border-color: rgba(149, 32, 20, 0.3);
 }

 /* Secondary (Green) Theme */
 .secondary-theme .corner-accent {
     border-color: var(--secondary-color);
 }

 .secondary-theme .icon-box {
     color: var(--secondary-color);
 }

 .secondary-theme:hover {
     border-color: rgba(58, 71, 54, 0.3);
 }

 /* 5. Typography & Icons */
 .icon-box-counter {
     font-size: 40px;
     margin-bottom: 15px;
     transition: transform 0.4s ease;
 }

 .counter-value {
     font-size: 36px;
     font-weight: 800;
     color: var(--black-color);
     margin-bottom: 5px;
 }

 .counter-label {
     font-size: 14px;
     font-weight: 700;
     text-transform: uppercase;
     color: #777;
     margin-bottom: 0;
     letter-spacing: 1px;
 }

 /* 6. HOVER ANIMATIONS */
 .counter-wrapper:hover .inner-card {
     transform: translateY(-10px);
     /* Lift Up */
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .counter-wrapper:hover .corner-accent {
     width: 100%;
     /* Expands the bottom line */
     height: 100%;
     /* Expands the left line */
     opacity: 0.1;
     /* Fades out slightly to look like a BG */
     border-width: 2px;
     /* Thinner border when expanded */
     background-color: currentColor;
     /* Fills with color */
 }

 .counter-wrapper:hover .icon-box {
     transform: scale(1.2) rotate(10deg);
 }

 /* --- SERVICES LIST STYLING --- */
 .services-list-section {
     padding: 100px 0;
     background-color: var(--white-color);
     overflow: hidden;
 }

 .service-row {
     margin-bottom: 80px;
     /* Space between rows */
 }

 .service-row:last-child {
     margin-bottom: 0;
 }

 /* 1. IMAGE WRAPPER (The Pill Shape) */
 .service-img-wrapper {
     position: relative;
     padding: 20px;
     display: flex;
     justify-content: center;
 }

 .img-pill {
     width: 100%;
     height: 350px;
     border-radius: 200px;
     /* Full Pill Shape */
     overflow: hidden;
     position: relative;
     z-index: 2;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     border: 5px solid var(--white-color);
     transition: transform 0.5s ease;
 }

 .img-pill img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 /* Decorative Background Shape behind Pill */
 .pill-bg-shape {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 105%;
     height: 105%;
     background: linear-gradient(135deg, rgba(58, 71, 54, 0.1), rgba(149, 32, 20, 0.1));
     border-radius: 200px;
     z-index: 1;
     transition: all 0.5s ease;
 }

 /* 2. HOVER EFFECTS (Image) */
 .service-row:hover .img-pill {
     transform: translateY(-10px);
 }

 .service-row:hover .img-pill img {
     transform: scale(1.1);
     /* Zoom */
 }

 .service-row:hover .pill-bg-shape {
     width: 115%;
     /* Pulse effect */
     height: 115%;
     background: linear-gradient(135deg, rgba(58, 71, 54, 0.2), rgba(149, 32, 20, 0.2));
 }

 /* 3. CONTENT STYLING */
 .service-content {
     position: relative;
 }

 /* Watermark Number (01, 02) */
 .service-number {
     position: absolute;
     top: -60px;
     left: 0;
     font-size: 100px;
     font-weight: 900;
     color: rgba(0, 0, 0, 0.03);
     /* Very light grey */
     z-index: 0;
     line-height: 1;
     font-family: sans-serif;
 }

 /* Icons */
 .service-content .icon-box {
     width: 60px;
     height: 60px;
     background-color: rgba(149, 32, 20, 0.1);
     /* Light Red */
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     position: relative;
     z-index: 1;
 }

 .service-title {
     font-size: 28px;
     font-weight: 800;
     color: var(--secondary-color);
     margin-bottom: 15px;
     position: relative;
     z-index: 1;
 }

 .service-desc {
     color: #555;
     font-size: 16px;
     line-height: 1.7;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 /* Bullet Points */
 .service-points {
     list-style: none;
     padding: 0;
     margin-bottom: 25px;
 }

 .service-points li {
     font-size: 15px;
     color: var(--secondary-color);
     margin-bottom: 8px;
     font-weight: 600;
 }

 .service-points li i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 12px;
 }

 /* 4. BUTTON DESIGN */
 .btn-service {
     display: inline-block;
     padding: 12px 30px;
     background-color: var(--primary-color);
     color: var(--white-color);
     font-weight: 700;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 5px;
     transition: all 0.3s ease;
     position: relative;
     z-index: 1;
 }

 .btn-service i {
     margin-left: 5px;
     transition: margin-left 0.3s;
 }

 .btn-service:hover {
     background-color: var(--secondary-color);
     /* Turns Green */
     color: var(--white-color);
 }

 .btn-service:hover i {
     margin-left: 10px;
     /* Arrow slide */
 }

 /* --- RESPONSIVE ADJUSTMENTS --- */
 @media (max-width: 991px) {
     .service-row {
         text-align: center;
         margin-bottom: 60px;
     }

     .service-content {
         padding: 0 !important;
     }

     .service-number {
         left: 50%;
         transform: translateX(-50%);
         top: -40px;
         font-size: 80px;
     }

     .service-content .icon-box {
         margin: 0 auto 15px auto;
     }

     .service-points {
         display: inline-block;
         text-align: left;
     }

     .img-pill {
         height: 250px;
         /* Smaller image on mobile */
     }
 }