/* ==========================================================================
   Universal Bearings India - Custom Stylesheet
   Author: Universal Bearings India
   ========================================================================== */

/* ============ CSS VARIABLES & RESET ============ */
:root {
    --primary: #0a2540;
    --primary-dark: #061a30;
    --primary-light: #1a3a5c;
    --accent: #ff6b1a;
    --accent-dark: #e55a0d;
    --accent-light: #ff8a47;
    --secondary: #f8b500;
    --text-dark: #1a1a1a;
    --text-body: #4a5568;
    --text-light: #718096;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 8px 25px rgba(10, 37, 64, 0.10);
    --shadow-lg: 0 15px 40px rgba(10, 37, 64, 0.15);
    --shadow-xl: 0 25px 60px rgba(10, 37, 64, 0.20);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

::selection {
    background: var(--accent);
    color: var(--bg-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============ UTILITY CLASSES ============ */
.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: var(--bg-light);
}

.text-accent {
    color: var(--accent);
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.text-center .section-subtitle {
    padding-left: 0;
    padding-bottom: 12px;
}

.text-center .section-subtitle::before {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary);
    line-height: 1.15;
    text-transform: uppercase;
}

.section-lead {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============ CUSTOM BUTTONS ============ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(255, 107, 26, 0.30);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.30);
}

.btn-block-custom {
    width: 100%;
    justify-content: center;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-call-now:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.25);
}

/* ============ TOP BAR ============ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--accent);
    font-size: 15px;
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a:hover {
    color: var(--accent);
}

.top-bar-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.gst-text {
    color: var(--accent);
    font-weight: 600;
    margin-right: 8px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.10);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    color: var(--bg-white);
}

/* ============ HEADER & NAVIGATION ============ */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.20);
    animation: spin 12s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

/* Custom Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============ HERO CAROUSEL ============ */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90) 0%, rgba(10, 37, 64, 0.75) 50%, rgba(10, 37, 64, 0.50) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--bg-white);
    padding: 30px 0;
}

.hero-tagline {
    display: inline-block;
    background-color: rgba(255, 107, 26, 0.15);
    color: var(--accent);
    padding: 8px 22px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 26, 0.40);
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 107, 26, 0.35);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.40);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 3;
    opacity: 0.6;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 107, 26, 0.85);
    border-radius: 50%;
    background-size: 50%;
}

.carousel-indicators {
    z-index: 3;
    bottom: 25px;
}

.carousel-indicators button {
    width: 35px !important;
    height: 4px !important;
    background-color: rgba(255, 255, 255, 0.50) !important;
    border-radius: 2px !important;
    border: none !important;
    margin: 0 5px !important;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--accent) !important;
    width: 50px !important;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    padding: 30px;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrap:hover .about-img-main img {
    transform: scale(1.05);
}

.about-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-decor::after {
    content: '';
    position: absolute;
    bottom: -180px;
    right: -180px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: 0;
}

.about-experience-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(255, 107, 26, 0.30);
    z-index: 3;
}

.about-experience-badge .years {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .years-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.about-feature-item:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateX(5px);
}

.about-feature-item i {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 600;
    font-size: 14px;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    background-color: var(--bg-light);
    position: relative;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-img-wrap {
    overflow: hidden;
    /* height: 240px; */
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.10);
}

.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.30) 100%);
}

.service-body {
    padding: 28px;
	text-align:center;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-text {
    color: var(--text-body);
    font-size: 14.5px;
    margin-bottom: 22px;
    line-height: 1.7;
}

/* ============ WHY CHOOSE US ============ */
.why-choose-section {
    background-color: var(--bg-white);
    position: relative;
}

.why-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transition: var(--transition);
    z-index: -1;
}

.why-card:hover::before {
    top: 0;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--bg-white);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.30);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotate(360deg);
}

.why-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: var(--transition);
}

.why-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
    transition: var(--transition);
}

/* ============ COUNTER SECTION ============ */
.counter-section {
    background-image: linear-gradient(135deg, rgba(10, 37, 64, 0.96) 0%, rgba(10, 37, 64, 0.92) 100%), url('../images/banner2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0;
    position: relative;
    color: var(--bg-white);
}

.counter-card {
    padding: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(255, 107, 26, 0.40);
    transition: var(--transition);
}

.counter-card:hover .counter-icon {
    transform: scale(1.10) rotate(10deg);
}

.counter-number {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-number::after {
    content: '+';
    color: var(--accent);
}

.counter-label {
    font-family: var(--font-display);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    font-weight: 500;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    background-color: var(--bg-white);
    position: relative;
}

.process-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    transition: var(--transition);
}

.process-card:hover .process-number {
    color: var(--accent);
    opacity: 0.20;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 34px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.process-card h3 {
    font-size: 21px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(255, 107, 26, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--bg-white);
    font-size: 45px;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-section {
    background-color: var(--bg-white);
    position: relative;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: var(--bg-light);
    line-height: 0.8;
    z-index: 0;
}

.testimonial-text {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: #ffb800;
    font-size: 16px;
    margin-bottom: 22px;
    display: flex;
    gap: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.25);
}

.testimonial-author h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.testimonial-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.30);
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background-color: var(--bg-light);
}

.faq-accordion .accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--accent);
}

.faq-accordion .accordion-button {
    padding: 22px 28px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: none !important;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 18px;
    width: 35px;
    height: 35px;
    background-color: var(--bg-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: var(--accent);
    color: var(--bg-white);
    content: '\F2EA';
    transform: rotate(0deg);
}

.faq-accordion .accordion-body {
    padding: 22px 28px;
    background-color: var(--bg-white);
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background-color: var(--bg-white);
    position: relative;
}

.contact-info-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 45px 35px;
    border-radius: var(--radius-md);
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-wrap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 107, 26, 0.10);
    border-radius: 50%;
}

.contact-info-wrap::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 107, 26, 0.05);
    border-radius: 50%;
}

.contact-info-wrap h3 {
    color: var(--bg-white);
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
}

.contact-info-wrap > p {
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 30px;
    position: relative;
    font-size: 14.5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(255, 107, 26, 0.35);
}

.contact-info-text h4 {
    color: var(--bg-white);
    font-size: 17px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
}

.contact-info-text a {
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background-color: var(--bg-white);
    padding: 45px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-form-wrap h3 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-form .form-label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    padding: 13px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.10);
    background-color: var(--bg-white);
}

.form-success {
    padding: 15px 20px;
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* ============ FOOTER ============ */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: rgba(255, 255, 255, 0.80);
    padding-top: 75px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
}

.footer-logo .brand-name {
    color: var(--bg-white);
}

.footer-widget > p {
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-widget h4 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--accent);
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.10);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: translateY(-3px);
    color: var(--bg-white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 35px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .text-danger {
    color: var(--accent) !important;
}

/* ============ FLOATING ICONS ============ */
.float-whatsapp,
.float-call {
    position: fixed;
    bottom: 130px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-whatsapp {
    left: 25px;
    background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
}

.float-call {
    right: 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    animation-delay: 0.5s;
}

.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.10);
    color: var(--bg-white);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-call {
    animation-name: pulseOrange;
}

@keyframes pulseOrange {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 0 rgba(255, 107, 26, 0.55);
    }
    70% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 15px rgba(255, 107, 26, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20), 0 0 0 0 rgba(255, 107, 26, 0);
    }
}

.float-tooltip {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.float-whatsapp .float-tooltip {
    left: 70px;
}

.float-call .float-tooltip {
    right: 70px;
}

.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: translateY(-5px);
}
.cu-lg-wdth{
	width:250px;
}
/* ============ RESPONSIVE DESIGN ============ */
/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 52px;
    }
    .section-title {
        font-size: 38px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 75px 0;
    }
    .navbar {
        padding: 12px 0;
    }
    .navbar-collapse {
        background-color: var(--bg-white);
        padding: 20px;
        margin-top: 12px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .navbar-nav .btn-primary-custom {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

    .hero-slide {
        height: auto;
        min-height: 550px;
        padding: 90px 0;
    }
    .hero-content h1 {
        font-size: 44px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .section-title {
        font-size: 34px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    .about-img-main img {
        height: 400px;
    }
    .about-experience-badge {
        bottom: 35px;
        padding: 18px 22px;
    }
    .about-experience-badge .years {
        font-size: 42px;
    }

    .counter-number {
        font-size: 46px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Small Devices (Phones) */
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-tx-cntr{
		justify-content:center!important
	}
	.hero-content{
		text-align:center
	}
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        letter-spacing: 2px;
        padding-left: 35px;
    }

    .section-subtitle::before {
        width: 25px;
    }

    .text-center .section-subtitle {
        padding-left: 0;
    }

    .hero-slide {
        min-height: 480px;
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 12px;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
		justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 26px;
        font-size: 13px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: 20px;
        padding: 15px 18px;
    }

    .about-experience-badge .years {
        font-size: 36px;
    }

    .about-experience-badge .years-text {
        font-size: 12px;
    }

    .service-img-wrap {
        height: 210px;
    }

    .service-title {
        font-size: 20px;
    }

    .why-card,
    .process-card {
        padding: 30px 20px;
    }

    .counter-number {
        font-size: 36px;
    }

    .counter-label {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-quote {
        font-size: 60px;
    }

    .faq-accordion .accordion-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-accordion .accordion-body {
        padding: 18px 20px;
        font-size: 14px;
    }

    .contact-info-wrap,
    .contact-form-wrap {
        padding: 30px 22px;
    }

    .contact-info-wrap h3,
    .contact-form-wrap h3 {
        font-size: 24px;
    }

    .footer-widget h4 {
        font-size: 18px;
    }

    .float-whatsapp,
    .float-call {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 120px;
    }

    .float-whatsapp {
        left: 18px;
    }

    .float-call {
        right: 18px;
    }

    .back-to-top {
        right: 18px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-item {
        border-radius: var(--radius-sm);
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 25px;
    }

    .about-img-main img {
        height: 280px;
    }

    .about-image-wrap {
        padding: 20px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-sub {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

@media(max-width:374px)
{
	.cu-lg-wdth {
    width: 235px;
}
}