/* --- General Setup & Variables --- */
:root {
    --primary-blue: #005a9c;
    --primary-orange: #f58220;
    --white: #ffffff;
    --dark-text: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
h2{
    font-size: 30px !important;
}

@media only screen and (max-width:768px){
    h2{
    font-size: 20px !important;
}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.coloured_heading{
    color:#f58220;
}
.btn.btn-primary {
	width: fit-content;
	padding: 10px 20px;
	background: #f58220;
	color: #fff;
}




/* Basic reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }
    a {
        text-decoration: none;
        color: inherit;
    }

    

    /* ===== Top Bar ===== */
    .top-bar {
        background: #005a9c;
        color: #fff;
        font-size: 14px;
        padding: 5px 0;
    }
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .top-bar .contact-info a {
        color: #fff;
        margin-right: 10px;
        font-size: 16px;
    }
    .top-bar .phone-number {
        margin-left: 5px;
    }
    .top-bar .tagline {
        font-weight: bold;
    }
    /* UPDATED: Request a Call button style */
    .top-bar .btn-request-call {
        background: #fff;
        color: #007BFF;
        padding: 8px 12px;
        border-radius: 4px;
        font-weight: bold;
        transition: 0.3s;
        border: 1px solid #fff;
    }
    .top-bar .btn-request-call:hover {
        background: #f0f0f0;
    }


    /* ===== Main Navigation ===== */
    .main-nav {
        background: #ff6f00;
        padding: 10px 0;
        /* position: sticky is removed */
            z-index: 999;
            transition: box-shadow 0.3s ease;
    }
    /* NEW CLASS: This is applied by JavaScript on scroll */
        .main-nav.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

    .main-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .logo img {
	height: 60px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 10px;
}
    
    nav.navigation {
        flex: 1;
        margin-left: 30px;
        position: relative;
    }
    nav ul.nav-links {
        list-style: none;
        display: flex;
        gap: 15px;
    }
    nav ul.nav-links li {
        position: relative;
    }
    /* UPDATED: Main nav link styles */
    nav ul.nav-links > li > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	color: #fff;
	transition: 0.3s;
	text-underline-offset: 5px;
	font-size: 14px;
}
.sub-dropdown {
	list-style-type: none;
}
.dropdown-menu li {
	list-style-type: none;
}
    nav ul.nav-links > li > a:hover {
        background: none;
        color: #f1f1f1;
    }

    /* UPDATED: Dropdown styles */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ff6f00; /* Orange background */
        min-width: 300px;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        flex-direction: column;
        padding: 5px 0;
    }
    .dropdown-menu li a {
        padding: 12px 20px;
        font-weight: normal;
        color: #fff; /* White text */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu li a:hover {
        background: #e06200; /* Darker orange on hover */
    }
    .sub-dropdown .dropdown-menu {
        top: 0;
        left: 100%;
        border-radius: 4px;
    }
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Desktop hover functionality */
    @media (min-width: 993px) {
        nav ul.nav-links li.dropdown:hover > .dropdown-menu {
            display: flex;
        }
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: flex;
        }
    }

    /* Nav right */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .btn-pay img {
	height: 40px;
	vertical-align: middle;
	padding: 5px;
	background: #fff;
	border-radius: 8px;
}
    .hamburger-menu, .close-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }

    /* ===== Mobile ===== */
    @media(max-width: 992px) {
        .top-bar .tagline {
            display: none;
        }
        nav ul.nav-links {
            position: fixed;
            left: -280px;
            top: 0;
            height: 100%;
            width: 280px;
            background: #ff6f00;
            flex-direction: column;
            gap: 0;
            padding-top: 50px;
            transition: left 0.3s ease;
            overflow-y: auto;
            z-index: 1001;
        }
        nav ul.nav-links.active { left: 0; }
        nav ul.nav-links li a {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Mobile main links still have underline */
         nav ul.nav-links > li > a {
            
            text-underline-offset: 5px;
         }

        /* Mobile dropdowns */
        .dropdown-menu {
            position: static;
            background: #e06200; /* Lighter orange for mobile submenus */
            box-shadow: none;
            border-radius: 0;
            min-width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0;
        }
        .dropdown-menu.show { max-height: 1500px; }
        /* Remove underline from mobile dropdown items */
        .dropdown-menu li a {
            text-decoration: none;
        }
        .sub-dropdown .dropdown-menu a {
            padding-left: 40px;
            background-color: #ff6f00;
        }
        .hamburger-menu { display: block; }
        .close-menu-btn {
	display: block;
	position: absolute;
	top: -40px;
	right: 20px;
	font-size: 30px;
	z-index: 1002;
}
        nav ul.nav-links li.dropdown:hover > .dropdown-menu,
        nav ul.nav-links li.sub-dropdown:hover > .dropdown-menu {
            display: none;
        }
.container .tagline {
  display: block;
  order: 3;
}
.top-bar .container {
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 5px 0px;
}
    }



/* --- ================================== --- */
/* --- FOOTER SECTION (NEW GRID LAYOUT) --- */
/* --- ================================== --- */
.site-footer {
    background-color: #1a1a2e; /* Dark blue/purple background */
    color: #a9a9d0; /* Light, soft text color */
    padding: 60px 20px; /* Remove bottom padding */
    font-size: 14px;
    border-top: 1px solid #eee;
}

.site-footer a {
    color: #a9a9d0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer a:hover {
    color: var(--primary-orange);
}

.site-footer .container {
    max-width: 1500px;
}

/* --- Combined Footer Grid --- */
/* This will contain both the initial widgets and the link lists */
.footer-top, .footer-links-grid {
    display: grid;
    /* Create a responsive grid that adjusts columns */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 30px;
    padding-bottom: 40px;
}

/* Remove the border between the two sections */
.footer-top {
    border-bottom: none;
}
.footer-links-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-widget .widget-title, .links-column h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 15px;
    background-color: white;
    padding: 5px;
    border-radius: 4px;
}

.footer-widget p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}
.social-icons a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.links-widget ul, .links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-widget li, .links-column li {
    margin-bottom: 10px;
}
.links-column a {
    text-transform: capitalize;
}


.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px 0 0 5px;
    color: var(--white);
    outline: none;
}
.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}


/* --- Sub-Footer --- */
.sub-footer {
	background-color: #111122;
	padding: 25px 0 60px 0px;
	text-align: center;
	color: #a9a9d0;
}
.sub-footer p {
    margin: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 100%;
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width:1024px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}

@media only screen and (max-width:768px){
    .footer-links-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
}
.footer-top {
	display: grid;
	grid-template-columns: repeat(1,1fr);
}
#footer .container {
	display: flex;
	flex-direction: column;
}
}


/* --- ================================================ --- */
/* --- FLOATING CONTACT WIDGET (CORRECTED & FINAL)      --- */
/* --- ================================================ --- */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.floating-contact-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact-widget li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: width 0.4s ease, border-radius 0.4s ease, background-color 0.3s ease;
    overflow: hidden;
}

.floating-contact-widget .whatsapp-float {
    background-color: #25D366;
}
.floating-contact-widget .whatsapp-float:hover {
    background-color: #128C7E;
}

/* The hover effect to expand the circle into a pill */
.floating-contact-widget li a:hover {
    width: 180px;
    border-radius: 30px;
    justify-content: flex-start; /* Aligns content to the left on hover */
}

/* Icon styling */
.floating-contact-widget li a i {
    font-size: 24px;
    text-align: center;
    margin-right: -16px;
}
.floating-contact-widget li a:hover i {
    font-size: 24px;
    text-align: center;
    margin-right: 10px !important;
    margin-left: 15px;
}

/* Text label styling (THE FIX IS HERE) */
.floating-contact-widget li a span {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    padding-right: 20px;

    /* --- FIX: HIDE TEXT BY DEFAULT --- */
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.2s ease;
}

/* --- FIX: REVEAL TEXT ON HOVER --- */
.floating-contact-widget li a:hover span {
    max-width: 120px; /* A value large enough to show the text */
    opacity: 1;
    transition-delay: 0.1s; /* Makes the animation smoother */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .floating-contact-widget {
        bottom: 20px;
        left: 20px;
    }
    .floating-contact-widget li a {
        width: 50px;
        height: 50px;
    }
    .floating-contact-widget li a i {
        font-size: 22px;
        width: 50px;
    }
    .floating-contact-widget li a:hover {
        width: 160px;
    }
     .floating-contact-widget li a span {
        font-size: 0.9rem;
    }
}



/* --- ================================== --- */
/* --- STICKY ENQUIRY BTN & POPUP (NEW) --- */
/* --- ================================== --- */

/* 1. The Sticky Button */
.sticky-enquiry-btn {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: bottom right;
    
    background-color: #ff6f00;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 998;
    border-radius: 8px 8px 0 0;
    box-shadow: -5px -5px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sticky-enquiry-btn i {
    transform: rotate(90deg); /* Re-orient the icon */
}




/* Popup Overlay */
.sticky-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.sticky-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Panel */
.sticky-popup-panel {
  background: #fff;
  border-radius: 12px;
  padding: 25px 22px;
  max-width: 440px; /* Smaller width to prevent overflow */
  width: 100%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.sticky-popup-overlay.active .sticky-popup-panel {
  transform: scale(1);
}

/* Close Button */
.sticky-popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  opacity: 0.7;
}

/* Headings */
.sticky-popup-panel h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.sticky-popup-panel p {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* Form Layout */
#sticky-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  margin-bottom: 4px;
  font-weight: 500;
  color: #333;
}

/* Input Styles */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 10px;
  font-size: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff6f00;
  background: #fff;
  outline: none;
}

/* File Input (Compact) */
input[type="file"] {
    padding: 6px;
    background: #fff;
    font-size: 0.8rem;
    height: 100%;
}

/* Textarea */
#sticky-message {
  height: 70px;
  resize: none;
}

/* Button */
.btn-submit {
  background: #ff6f00;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 0;
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: #e65f00;
}

/* Responsive: Single-column layout on mobile */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
  }
  .sticky-popup-panel {
    max-width: 95%;
    padding: 20px;
  }
}






/* --- ============================ --- */
/* --- HERO BANNER SECTION (NEW)    --- */
/* --- ============================ --- */
.hero-section {
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0px;
}

/* Ken Burns Effect Background Image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* !!! IMPORTANT: CHANGE THIS URL TO YOUR BACKGROUND IMAGE !!! */
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    animation: kenBurnsEffect 25s infinite;
    z-index: -2; /* Places it behind the overlay and content */
}

/* Dark Overlay for Text Readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 42, 75, 0.3); /* Dark blue from your theme, semi-transparent */
    z-index: -1; /* Places it on top of the image but behind the content */
}

/* Keyframes for the Ken Burns Animation */
@keyframes kenBurnsEffect {
    0% {
        transform: scale(1.1) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.25) translate(4%, -4%);
        opacity: 1;
    }
    100% {
        transform: scale(1.1) translate(0, 0);
        opacity: 1;
    }
}

.hero-section .container {
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1000px; /* Constrains the width of the content */
    text-align: left;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

@media only screen and (max-width:768px){
    .hero-content h1 {
    font-size: 22px;
}
}

.hero-content p {
    font-size: 1.1rem;
    /* max-width: 650px; */
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: center;
}

/* --- Animation Classes (Optional but Recommended) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger the animation */
.hero-content p.animate-on-scroll { transition-delay: 0.2s; }
.hero-form.animate-on-scroll { transition-delay: 0.4s; }

.form-group.file-upload label {
    margin: 0px !important;
    height: 100%;
    padding-top: 18px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 0;
        padding: 80px 0;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
}


/* --- Horizontal Form Styling (UPDATED for Country Code & File Upload) --- */
.hero-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form .form-group {
    flex: 1 1 calc(50% - 8px);
    position: relative;
}

.hero-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    z-index: 1;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}
.fas.fa-comment-dots {
    top: 20% !important;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.3);
}

/* --- Phone Group Styling --- */
.phone-group .phone-fields {
    display: flex;
    gap: 5px;
    align-items: center;
}

.phone-group .country-code {
    width: 30%;
    padding-left: 10px;
    text-align: center;
    font-size: 15px;
}

.phone-group .phone-number {
    width: 70%;
    padding-left: 10px;
}

/* --- File Upload Field Styling --- */
.file-upload {
    display: flex;
    
    position: relative;
}

.file-upload .file-label {
    display: inline-block;
    background: #fff;
    padding: 15px 15px 15px 45px;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
}

.file-upload .file-label:hover {
    border-color: var(--primary-orange);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* --- Button --- */
.hero-form .btn {
    flex-basis: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 30px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-form .btn:hover {
    filter: brightness(1.1);
}

/* --- Responsive Adjustments --- */
/* This existing rule for mobile still works perfectly */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 0;
        padding: 80px 0;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
    .hero-form {
        width: 100%;
    }
    .hero-form .form-group {
        flex-basis: 100%;
    }
    .phone-group .phone-fields {
        flex-direction: row;
    }
}





/* --- ================================================ --- */
/* --- COMPREHENSIVE SERVICES SECTION (UPDATED STYLES)  --- */
/* --- ================================================ --- */
.about-services-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    overflow: hidden; /* Prevents animation overflows */
}

.about-services-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Switched to equal columns for better balance with image */
    gap: 60px;
    align-items: center;
}

/* --- Left Column: Image & Text --- */
.about-text-content {
    display: flex;
    flex-direction: column;
}

/* ADDED: Styles for the new image */
.about-image-wrapper {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden; /* Ensures the image respects the border-radius */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10; /* Gives the image a consistent shape */
    object-fit: cover;
}

.about-text-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* ADDED: Styles for the "Buttons in Lists" */
.service-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-highlights-list li a {
    display: inline-block;
    background-color: #e9ecef;
    color: var(--dark-text);
    padding: 8px 18px;
    border-radius: 20px; /* Pill shape */
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-highlights-list li a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.3);
}

/* --- Right Column: Feature Cards (Unchanged) --- */
.about-features-grid {
    display: grid;
    gap: 20px;
    align-content: start; /* Aligns cards to the top */
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .about-services-section .container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-services-section {
        padding: 60px 0;
    }
     .about-text-content {
        text-align: center;
    }
    .service-highlights-list {
        justify-content: center; /* Center the tags on mobile */
    }
}





/* --- ========================================================== --- */
/* --- MARKETPLACE CARDS SLIDER SECTION (NEW DESIGN)            --- */
/* --- ========================================================== --- */
.marketplace-cards-slider-section {
    padding: 80px 0;
    background-color: #1a1a2e; /* Dark background */
    color: var(--white);
    text-align: center;
    overflow: hidden; /* Important for slider */
}
.marketplace-cards-slider-section .container {
    flex-direction: column;
}
.marketplace-cards-slider-section .section-header {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.marketplace-cards-slider-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--white);
}

.marketplace-cards-slider-section .section-header p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Swiper Container --- */
.marketplace-card-swiper {
    width: 100%;
    padding: 40px 0; /* Space for arrows and pagination */
}
.marketplace-card-swiper .swiper-slide {
  display: flex;        /* Makes the slide a flex container */
  align-items: stretch; /* (Default) Ensures children stretch vertically */
  height: auto;         /* Allow Swiper to manage the row height */
}
/* --- Individual Marketplace Card Item --- */
.marketplace-card-item {
    background-color: #2a2a3e; /* Slightly lighter dark for card */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Important for image border-radius */
    display: flex;
    flex-direction: column;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;  /* Add this */
    height: 100%; /* Add this */
}

.marketplace-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.marketplace-card-image {
    width: 100%;
    height: 180px; /* Fixed height for image */
    overflow: hidden;
    position: relative;
}

.marketplace-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.marketplace-card-item:hover .marketplace-card-image img {
    transform: scale(1.05); /* Zoom effect on hover */
}

.marketplace-card-content {
    padding: 25px;
    flex-grow: 1; /* Allows content to take up remaining height */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left within the card */
    text-align: left;
}

.marketplace-card-content .card-logo {
    height: 40px;
    max-width: 100px;
    margin-bottom: 15px;
    object-fit: contain;
    border-radius: 5px;
    padding: 0px 5px;
    background: #fff;
}


.marketplace-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-orange);
    line-height: 1.4;
}

.marketplace-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

/* Custom button for the cards */
.marketplace-card-content .btn-secondary {
    display: inline-block; /* Essential for spacing */
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    align-self: flex-start; /* Align button to the left */
}

.marketplace-card-content .btn-secondary:hover {
    background-color: var(--primary-orange);
}

/* --- Swiper Navigation (Arrows) --- */
.marketplace-card-swiper .swiper-button-prev,
.marketplace-card-swiper .swiper-button-next {
    color: var(--white);
    transform: translateY(-50%) scale(0.8);
    background-color: rgba(245, 130, 32, 0.8); /* Orange background for arrows */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.marketplace-card-swiper .swiper-button-prev:hover,
.marketplace-card-swiper .swiper-button-next:hover {
    background-color: var(--primary-blue);
}
.marketplace-card-swiper .swiper-button-prev::after,
.marketplace-card-swiper .swiper-button-next::after {
    font-size: 1.2rem !important; /* Smaller arrow icon */
}

/* --- Swiper Pagination (Dots) --- */
.marketplace-card-swiper .swiper-pagination {
    bottom: 5px !important; /* Position pagination dots */
}
.marketplace-card-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}
.marketplace-card-swiper .swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .marketplace-cards-slider-section {
        padding: 60px 0;
    }
    .marketplace-cards-slider-section .section-header {
        margin-bottom: 40px;
    }
    .marketplace-card-swiper .swiper-button-prev,
    .marketplace-card-swiper .swiper-button-next {
        display: none; /* Hide arrows on small screens */
    }
    .marketplace-card-swiper .swiper-pagination {
        bottom: 0 !important;
    }
}




/* --- ================================================ --- */
/* --- STATS COUNTER SECTION (NEW DESIGN)               --- */
/* --- ================================================ --- */
.counter-up-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background */
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetrical columns */
    gap: 60px;
    align-items: center;
}

/* --- Left Text Column --- */
.stats-text-content h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-text-content h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.stats-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.stats-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* --- Right Cards Grid --- */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 24px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background-color: rgba(245, 130, 32, 0.1); /* Light orange background */
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card h4 {
	font-size: 2rem;
	font-weight: 700;
	color: #f58220;
	margin-bottom: 5px;
}

/* Using pseudo-elements to add suffixes like 'k+', 'L+', 'Cr+' */
.stat-card h4[data-count="40000"]::after {
    content: 'k+';
}
.stat-card h4[data-count="8"]::after {
    content: '+';
}
.stat-card h4[data-count="800000"]::after {
    content: 'L+';
    font-size: 2rem; /* Make suffix slightly smaller */
    margin-left: 5px;
}
.stat-card h4[data-count="80000000"]::after {
    content: 'Cr+';
    font-size: 2rem; /* Make suffix slightly smaller */
    margin-left: 5px;
}


.stat-card p {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr; /* Stack columns on tablet/mobile */
        gap: 50px;
    }
    .stats-text-content {
        text-align: center;
    }
    .stats-text-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .stats-cards-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
    }
}





/* --- ================================================ --- */
/* --- CTA SECTION (GLASSMORPHISM DESIGN WITH 4-FIELD FORM) --- */
/* --- ================================================ --- */
.cta-section {
    position: relative; /* Required for pseudo-element overlays */
    padding: 100px 0;
    overflow: hidden;
}

/* Background Image Layer */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* !!! IMPORTANT: Replace with your desired background image !!! */
    background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax effect on scroll */
    z-index: -2;
}

/* Dark Overlay Layer for Readability */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 46, 0.6); /* Dark blue from your theme, semi-transparent */
    z-index: -1;
}

/* The Glassmorphism Panel */
.cta-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    background: rgba(42, 42, 62, 0.7); /* Semi-transparent dark background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-panel h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px auto;
}



/* === CTA FORM STYLING (Updated: Black Dropdown Text + Arrow Visible on Mobile) === */
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 650px;
  margin: 0 auto;
  overflow: visible; /* Prevent dropdown clipping */
}

/* --- Two Columns Layout --- */
.cta-form .form-group {
  flex: 1 1 calc(50% - 8px);
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* === Input Fields & Select === */
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Placeholder color */
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Focus effect */
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.3);
}

/* --- Dropdown Fix (color + arrow) --- */
.cta-form select {
  position: relative;
  z-index: 9999;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E")
    no-repeat right 15px center;
  background-size: 26px;
  color: var(--white);
}

/* Dropdown list options – black text */
.cta-form select option {
  color: #000;
  background: #fff;
}

/* --- Textarea --- */
.cta-form textarea {
  flex-basis: 100%;
  min-height: 100px;
  resize: vertical;
}

/* === File Upload Styling === */
.file-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Styled label button */
.file-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.file-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hide actual input */
.file-btn input[type="file"] {
  display: none;
}

/* File name display */
.file-name {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --- Submit Button --- */
.cta-form .btn {
  flex-basis: 100%;
  margin-top: 10px;
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: filter 0.3s ease;
}

.cta-form .btn:hover {
  filter: brightness(1.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    .cta-panel {
        padding: 40px 25px;
    }
    .cta-form .form-group {
    flex-basis: 100%;
  }
  .file-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .file-name {
    width: 100%;
  }
  .cta-form select {
    background-position: right 12px center;
    background-size: 16px;
  }
  .cta-form .form-row {
    flex-wrap: unset;
}
}






/* --- ================================================ --- */
/* --- OTHER SERVICES SECTION (UPDATED WITH ORANGE THEME) --- */
/* --- ================================================ --- */
.other-services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
}
.other-services-section .container {
	flex-direction: column;
}

.other-services-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.other-services-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.other-services-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.other-services-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* --- The Service Cards Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Individual Service Card --- */
.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Top part of the card with the icon */
.service-icon-wrapper {
	background-color: #f58220;
	padding: 40px;
	text-align: center;
}

.service-icon-wrapper i {
    font-size: 48px;
    /* UPDATED: Changed from primary-blue to primary-orange */
    color: #fff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.1);
}

/* Bottom part of the card with text content */
.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.service-card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.service-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; 
}

/* The "View More" link */
.service-link {
    /* UPDATED: Changed from primary-blue to primary-orange */
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start; 
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .other-services-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}





/* --- ================================================ --- */
/* --- TESTIMONIALS SECTION (DYNAMIC CUBE DESIGN V2)    --- */
/* --- ================================================ --- */
.testimonial-section-v2 {
    padding: 80px 0;
    background-color: #1a1a2e;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-section-v2 .container {
    flex-direction: column;
}

.testimonial-section-v2 .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.swiper.testimonial-cube-swiper.animate-on-scroll.swiper-cube.swiper-3d.swiper-initialized.swiper-horizontal.swiper-watch-progress.is-visible {
    width: 80%;
}

@media only screen and (max-width:768px){
    .swiper.testimonial-cube-swiper.animate-on-scroll.swiper-cube.swiper-3d.swiper-initialized.swiper-horizontal.swiper-watch-progress.is-visible {
    width: 100%;
}
}

.testimonial-section-v2 .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.testimonial-section-v2 .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --- The Swiper Cube Slider Container --- */
.testimonial-cube-swiper {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    padding: 20px 0;
}

/* Individual Testimonial Card Styles */
.testimonial-card-v2 {
    background-color: #2a2a40; /* Slightly lighter dark for the card */
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-card-v2 .card-top {
    background-color: #3b3b5c; /* Darker accent for the top part */
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2; /* Ensure it's above the bottom part's shadow */
}

.testimonial-card-v2 .card-top img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.2);
}

.testimonial-card-v2 .author-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.testimonial-card-v2 .author-info span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card-v2 .testimonial-stars {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.testimonial-card-v2 .card-bottom {
    flex-grow: 1;
    padding: 25px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center;
}

.testimonial-card-v2 .card-bottom p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card-v2 .quote-icon {
    font-size: 3rem;
    color: rgba(245, 130, 32, 0.2); /* Subtle orange quote icon */
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 0;
}

/* Swiper Navigation and Pagination */
.testimonial-cube-swiper .swiper-button-next,
.testimonial-cube-swiper .swiper-button-prev {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    top: 55%; /* Adjust vertical position */
}

.testimonial-cube-swiper .swiper-button-next:hover,
.testimonial-cube-swiper .swiper-button-prev:hover {
    background-color: var(--primary-orange);
}

.testimonial-cube-swiper .swiper-button-next::after,
.testimonial-cube-swiper .swiper-button-prev::after {
    font-size: 1.4rem;
}

.testimonial-cube-swiper .swiper-pagination {
    position: static; /* Position below the slider, not overlapping */
    margin-top: 30px;
}

.testimonial-cube-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: background-color 0.3s ease;
}

.testimonial-cube-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .testimonial-cube-swiper {
        height: 500px; /* Adjust height for smaller screens if needed */
    }
}

@media (max-width: 768px) {
    .testimonial-section-v2 {
        padding: 60px 0;
    }
    .testimonial-cube-swiper {
        height: 550px; /* Adjust height for mobile if content wraps more */
    }
    .testimonial-card-v2 .card-top {
        padding: 25px 15px 15px;
    }
    .testimonial-card-v2 .card-bottom {
        padding: 20px 20px 25px;
    }
    .testimonial-card-v2 .card-bottom p {
        font-size: 1rem;
    }
    .testimonial-cube-swiper .swiper-button-next,
    .testimonial-cube-swiper .swiper-button-prev {
        display: none; /* Hide arrows on mobile, rely on swipe */
    }
}






/* --- ================================================ --- */
/* --- FAQ SECTION (NEW VERTICAL TAB DESIGN)            --- */
/* --- ================================================ --- */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
}
.faq-section .container {
	flex-direction: column;
}

.faq-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.faq-section .section-header h2 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* --- The Main FAQ Grid --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 3fr; /* 1 part for tabs, 3 for content */
    gap: 50px;
}

/* Left Column: Vertical Tab Navigation */
.faq-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-tab-btn {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
}


@media only screen and (max-width:768px){
    .faq-tab-btn{
        padding: 10px;
        font-size: 14px;
    }
}

.faq-tab-btn:hover {
    background-color: rgba(245, 130, 32, 0.1);
    border-color: var(--primary-orange);
}

.faq-tab-btn.active {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

/* Right Column: Content Panes */
.faq-content-panes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.faq-image-pane {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.faq-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.faq-image.active {
    opacity: 1;
}

/* The Accordion Itself */
.faq-tab-panel {
    display: none;
}
.faq-tab-panel.active {
    display: block;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* The +/- icon */
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    line-height: 1.6;
    color: #555;
    padding: 0 0 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if answers are very long */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .faq-grid, .faq-content-panes {
        grid-template-columns: 1fr;
    }
    .faq-tabs-nav {
        flex-direction: row; /* Horizontal tabs on smaller screens */
        flex-wrap: wrap;
    }
    .faq-tab-btn {
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-image-pane {
        display: none; /* Hide image on mobile for simplicity */
    }
    .faq-content-panes {
        padding: 15px;
    }
}





/* --- ================================================ --- */
/* --- NEW "ASYMMETRICAL SHOWCASE" CONTACT (LIGHT BG)   --- */
/* --- ================================================ --- */
.home-contact-section {
    padding: 80px 0;
    background-color: var(--bg-light); /* Light BG */
    overflow: hidden; /* Contains the overlapping panel */
}

.home-contact-section .container {
    max-width: 1200px;
}

.home-contact-grid {
    display: grid;
    /* Asymmetrical: 2 parts form, 1 part info */
    grid-template-columns: 2fr 1fr; 
    gap: 40px;
    align-items: flex-start;
}

/* Left Column: Form Panel */
.form-panel {
    background: var(--white);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}
.form-panel h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
}
.form-panel p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 30px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#home-contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Right Column: Info Panel */
.info-panel-wrapper {
    /* This wrapper helps with alignment */
    padding-top: 20px; 
}

.info-panel {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* This creates the cool "floating" overlap */
    margin-top: -40px; 
}
.info-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}
.info-panel p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background-color: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
}
.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.info-text a, .info-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-text a:hover {
    color: var(--primary-orange);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .home-contact-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .info-panel-wrapper {
        padding-top: 0;
    }
    .info-panel {
        margin-top: 0; /* Remove the overlap */
    }
}
@media (max-width: 576px) {
    .form-panel {
        padding: 30px 25px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}



/* === Compact, Responsive Home Contact Form === */
#home-contact-form {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

/* Two-column layout */
#home-contact-form .form-row-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#home-contact-form .form-group {
  flex: 1;
  margin-bottom: 14px;
}

#home-contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-text);
}

/* Inputs, Selects, and Textarea */
#home-contact-form input,
#home-contact-form textarea,
#home-contact-form select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

#home-contact-form input:focus,
#home-contact-form textarea:focus,
#home-contact-form select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px rgba(245, 111, 33, 0.15);
}

#home-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Dropdown Styling --- */
#home-contact-form select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  background-size: 16px;
  cursor: pointer;
}

#home-contact-form select option {
  color: #000;
  background: #fff;
}

/* --- Country Code + Phone --- */
.phone-flex {
  display: flex;
  gap: 6px;
}

#home-country-code {
  flex: 0 0 30%;
  text-align: center;
  padding: 10px;
}

#home-phone {
  flex: 1;
}

/* --- File Input Styled Like Other Fields --- */
.file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  color: #666;
  font-size: 0.95rem;
  cursor: pointer;
}

.file-input-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
}

.file-input-wrapper:hover {
  border-color: var(--primary-orange);
  background: #fafafa;
}

/* Placeholder text for file input */
.file-placeholder {
  pointer-events: none;
  flex: 1;
}

/* --- Button --- */
#home-contact-form .btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

#home-contact-form .btn-primary:hover {
  background-color: #f8702a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #home-contact-form .form-row-2 {
    flex-direction: column;
  }

  #home-country-code {
    flex: 0 0 35%;
  }

  .file-input-wrapper {
    font-size: 0.9rem;
  }
}
