/* 
  Taurus Engineering - Premium Industrial Foundry Pattern Manufacturing CSS
  Theme Colors: Primary: #1E3A5F | Secondary: #F97316 | Accent: #374151 | Neutral: #F8FAFC
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #1E3A5F;
    --primary-dark: #0F2537;
    --secondary: #F97316;
    --secondary-hover: #EA580C;
    --accent: #374151;
    --slate-light: #F8FAFC;
    --slate-muted: #64748B;
    --border-color: #E2E8F0;
    --dark: #0F172A;
    --white: #FFFFFF;
    
    --btn-gradient: linear-gradient(135deg, #1E3A5F 0%, #F97316 100%);
    --btn-gradient-hover: linear-gradient(135deg, #F97316 0%, #1E3A5F 100%);
    --accent-gradient: linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(249, 115, 22, 0.95));

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.18);
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--accent);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Preloader Spinner */
#spinner {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    z-index: 99999;
}
#spinner.hide {
    opacity: 0;
    visibility: hidden;
}

/* Topbar */
.topbar {
    background-color: var(--primary-dark);
    font-size: 0.875rem;
    color: #CBD5E1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar a {
    color: #CBD5E1;
}
.topbar a:hover {
    color: var(--secondary);
}
.topbar-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--secondary);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Header & Sticky Navigation */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    padding: 12px 0;
}
.navbar-custom.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1040;
}
.navbar-brand img {
    height: 52px;
    width: auto;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary) !important;
    padding: 10px 16px !important;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Mega Menu Dropdown */
.mega-dropdown {
    position: static !important;
}
.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 24px 30px;
    background: var(--white);
    border-top: 3px solid var(--secondary);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 16px 16px;
}
.mega-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}
.mega-menu-item:hover {
    background: var(--slate-light);
    color: var(--secondary);
    transform: translateX(6px);
}
.mega-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
    transition: var(--transition);
}
.mega-menu-item:hover .mega-menu-icon {
    background: var(--secondary);
    color: var(--white);
}

/* Buttons Styling */
.btn-primary-gradient {
    background: var(--btn-gradient);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-gradient:hover {
    background: var(--btn-gradient-hover);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 8px;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary-custom:hover {
    background: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 88vh;
    background: url('../images/banner/1.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 37, 55, 0.92) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(15, 23, 42, 0.94) 100%);
    z-index: 1;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(249, 115, 22, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid var(--secondary);
    color: #FFEDD5;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title span {
    color: var(--secondary);
    position: relative;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 36px;
    max-width: 680px;
    font-weight: 400;
}
.hero-stats-strip {
    margin-top: 40px;
    padding-top: 30px;
    
}

/* Section Common Styling */
.section-padding {
    padding: 90px 0;
}
.bg-light-custom {
    background-color: var(--slate-light);
}
.section-title-wrapper {
    margin-bottom: 50px;
}
.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
}
.section-desc {
    color: var(--slate-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 12px auto 0;
}

/* About Us Section */
.about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition);
}
.about-img-box:hover img {
    transform: scale(1.04);
}
.experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--btn-gradient);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.experience-badge h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin: 0;
}
.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.about-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}
.product-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #F1F5F9;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}
.product-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(30, 58, 95, 0.85);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.product-desc {
    font-size: 0.92rem;
    color: var(--slate-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Industries We Serve Cards */
.industry-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.industry-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.industry-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.industry-card:hover .industry-icon-box {
    background: var(--secondary);
    color: var(--white);
}
.industry-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
}
.industry-card:hover .industry-title {
    color: var(--white);
}
.industry-card p {
    font-size: 0.88rem;
    color: var(--slate-muted);
    margin: 0;
    transition: var(--transition);
}
.industry-card:hover p {
    color: #CBD5E1;
}

/* Manufacturing Process Workflow */
.process-step-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.process-step-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}
.process-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 10px;
    margin-bottom: 16px;
}
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
}

/* Why Choose Us Section */
.feature-box {
    background: var(--slate-light);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}
.feature-box:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.feature-check-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.feature-box h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

/* Masonry Gallery Section */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.gallery-filter-btn {
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 37, 55, 0.9), rgba(15, 37, 55, 0.2));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-zoom-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Projects Showcase */
.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.project-img-box {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-card:hover .project-img-box img {
    transform: scale(1.06);
}
.project-body {
    padding: 24px;
}
.project-meta-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* Quality Assurance Section */
.qa-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.qa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--slate-light);
}
.qa-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Animated Counters Section */
.counter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 70px 0;
    position: relative;
}
.counter-box {
    text-align: center;
    padding: 20px;
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}
.counter-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Carousel */
.testimonial-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    margin: 10px 4px;
}
.testimonial-quote-icon {
    font-size: 2.5rem;
    color: rgba(249, 115, 22, 0.2);
    position: absolute;
    top: 24px;
    right: 28px;
}
.testimonial-text {
    font-size: 1.02rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}
.testimonial-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
.testimonial-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--slate-muted);
}

/* Inquiry Banner Section */
.inquiry-banner {
    position: relative;
    background: url('../images/banner/2.png') no-repeat center center / cover;
    padding: 85px 0;
    color: var(--white);
}
.inquiry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 37, 55, 0.94) 0%, rgba(249, 115, 22, 0.88) 100%);
    z-index: 1;
}
.inquiry-content {
    position: relative;
    z-index: 2;
}

/* Contact Section & Form */
.contact-card {
    background: var(--slate-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.form-control-custom, .form-select-custom {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--accent);
    transition: var(--transition);
}
.form-control-custom:focus, .form-select-custom:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    min-width: 50px;
}
.map-responsive {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 320px;
    width: 100%;
}

/* Breadcrumb Sub-Hero Headers for Inner Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(249, 115, 22, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
}
.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-top: 15px;
    padding: 0;
}
.page-header .breadcrumb-item, .page-header .breadcrumb-item a {
    color: #CBD5E1;
    font-weight: 500;
}
.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

/* Footer Section */
.footer {
    background: var(--primary-dark);
    color: #94A3B8;
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 0.95rem;
    border-top: 4px solid var(--secondary);
}
.footer h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 8px;
}
.social-icon:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 50px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--btn-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: none;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: 12px 0;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
    }
}