* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004999;
    --accent-color: #00aaff;
    --dark-color: #1a1a2e;
    --light-color: #f5f7fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white: #ffffff;
    --spacing-unit: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.desktop-nav {
    display: flex;
}

/* Header */
header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 50px 20px;
    height: 70px;
    overflow: visible;
}

/* Left side (hamburger + logo) */
.left {
    display: flex;
    align-items: center;
}

.hamburger {
    font-size: 15px;
    padding: 6px 12px;
    margin-right: 15px;
    border: 1px solid #0d4fa3;
    border-radius: 3px;
    color: #0d4fa3;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}



.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 8px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #222;
}

/* Background bars with angled shape */
.blue-bar,
.white-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 300px;
    right: 0;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    transition: background-color 0.3s ease;
}

.blue-bar {
    background: #0053a3;
    z-index: 1;
}

.white-bar {
    background: white;
    left: 400px;
    overflow: auto;
}

/* Navigation */
nav {
    position: relative;
    margin-left: auto;
    z-index: 2;
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}


nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #b3d1ff;
}

/* Dropdown menu */
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0053a3;
    list-style: none;
    margin-top: 8px;
    border-radius: 4px;
    padding: 5px 0;
    min-width: 160px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}


section {
    text-align: start;
    /*overflow:hidden;*/
}

.main-img {
    min-height: 550px;
}

.nav-section {
    position: absolute;
    background: white;
    inset: 0;
    top: 6.2rem;
    z-index: 9999;
    height: max-content;
    opacity: 0;
    transform: translateX(-50px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.nav-section.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    position: fixed;
}


/* Menu inside nav-section */
.menu ul {
    background-color: #003366;
    list-style: none;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    /* height: 84.4vh; */
    overflow-y: scroll;
}

.menu ul li:hover {
    background-color: #0d4fa3;
    cursor: pointer;
    padding-left: 80px;
}

.menu ul li.active {
    background-color: #0053a3 !important;
    color: white;
    /* optional, to make text visible */
    cursor: pointer;
}


.menu ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #133781;
    padding: 30px 130px 18px 40px;
    cursor: pointer;
    background-color: #003366;
    /* your existing bg */
    user-select: none;
    /* width: 300px; */
}

/* Optional: style for active */
.menu ul li.active {
    background-color: black;
    color: white;
}



.menu ul li a {
    color: white;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #a3c1f7;
}

/* Crane card */
.crane {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    will-change: transform;
    padding: 20px;
}

.crane:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Crane image */
.crane img {
    width: 100%;
    height: 150px;
    object-fit: fill;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.crane:hover img {
    transform: scale(1.05);
}

/* Crane text */
.crane h5 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
}

.crane p {
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.crane:hover h5,
.crane:hover p {
    color: #0053a3;
}

.card {
    margin-bottom: 20px;
    border-radius: 6% !important;
}


.card-img-top {
    height: 200px;
    /* Adjust the height to maintain consistency in card sizes */
    object-fit: cover;
}

.card-body {
    text-align: center;
}

.card-body p {
    font-size: 0.9rem;
    text-align: start;
}

.card-body h5 {
    text-align: start;
}

.img-hover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-hover img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.774), transparent);
    /* lighter default */
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
}

.overlay-content {
    width: 100%;
    text-align: left;
    position: relative;
}

/* Heading default (visible, placed where <p> will appear) */
.overlay-content h5 {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    margin: 0;
}

/* Paragraph hidden initially */
.overlay-content p {
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    transition: all 0.4s ease;
    display: flex !important;
    justify-content: space-between !important;
    width: 100%;
}

/* On hover, darken overlay */
.img-hover:hover .overlay {
    background: linear-gradient(to top, rgb(0, 0, 0), transparent);
    cursor: pointer;
}

/* On hover, move h5 up */
.img-hover:hover .overlay-content h5 {
    transform: translateY(-25px);
}

/* On hover, show p in place of h5 */
.img-hover:hover .overlay-content p {
    opacity: 1;
    transform: translateY(0);
}

#crane-container {
    /* height: 615px; */
    overflow: auto;
}


/* Mobile Header/Nav */
.mobile-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    width:100%;
}

.mobile-menu-toggle {
    font-size: 22px;
    border: none;
    background: transparent;
}


.mobile-nav{
    display: none;
    background: #f9f9f9;
}

.mobile-nav ul, .mobile-crane-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.mobile-nav ul li, .mobile-crane-container ul li {
    border-bottom: 1px solid #ddd;
    width:50%;
}

.mobile-nav ul li a, .mobile-crane-container ul li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
}

.mobile-nav ul li ul {
    display: none;
    background: #eee;
}

.mobile-nav ul li.open>ul {
    display: block;
}

.mobile-related-data {
    background: #f9f9f9;
}

.mobile-related-data .card {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.mobile-related-data img {
    width: 100%;
    border-radius: 5px;
}

/* Apply animation to cards */
#mobile-crane-container .card {
    opacity: 0;
    transform: translateY(15px);
    animation: slideFadeIn 0.4s ease forwards;
}

/* Small delay between each card for stagger effect */
#mobile-crane-container .card:nth-child(1) {
    animation-delay: 0.1s;
}

#mobile-crane-container .card:nth-child(2) {
    animation-delay: 0.2s;
}

#mobile-crane-container .card:nth-child(3) {
    animation-delay: 0.3s;
}

#mobile-crane-container .card:nth-child(4) {
    animation-delay: 0.4s;
}

#mobile-crane-container .card:nth-child(5) {
    animation-delay: 0.5s;
}



.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/imgi_18_L_Range_Cover_16_9+\(00000\).png') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

.hero-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 170, 255, 0.3));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 170, 255, 0.5);
    backdrop-filter: blur(10px);
    width: fit-content !important;
}

.hero-title {
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-padding {
    overflow-x:hidden;
    padding:100px 0 ;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 170, 255, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.business-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    transform: rotateY(360deg);
}

.business-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.business-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.business-features i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 170, 255, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00aaff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-5px);
    border-color: transparent;
    color: var(--white);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
   
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
     cursor:pointer !important;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.feature-section {
    background-color: #fff;
    overflow-x:hidden;
    
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-icon {
    color: #0081C9;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.feature-content p {
    color: #555;
    margin-bottom: 5px;
}

.compressor-section {
    padding: 60px 0;
}

.compressor-section a{
    display:inline-block;
    height:100%;
}

.compressor-section h2 {
    font-weight: 700;
    color: #1a1a1a;
}

.compressor-section p.lead {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.compressor-card {
    border: 1px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    cursor: pointer;
    height:100%;
}

.compressor-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.compressor-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #fff;
}

.compressor-info {
    background-color: #2d3e50;
    color: #fff;
    padding: 20px;
    height:100%;
}

.compressor-info h5 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.compressor-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    border-top: 1px dotted rgba(255, 255, 255, 0.3);
    padding-top: 8px;

    /* Line clamp settings */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit text to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add ellipsis (…) when text is truncated */
}


.product-section,
.bredcrumb {
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

.bredcrumb a {
    position: relative;
    text-decoration: none;
    color: white;
}

.bredcrumb a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.bredcrumb a:hover::after {
    width: 100%;
}

.bredcrumb .active {
    color: rgb(195, 193, 193);
}


.product-text {
    padding: 0 40px;
}

.product-text h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.product-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e8f9ff;
}

.product-text .btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-text .btn:hover {
    background: #f4f4f4;
    transform: translateY(-2px);
}

.product-image {
    clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 86%);
        height: 100%;
    align-content: center;
    background:#f8f9fa;
    padding:0 !important;
}

.product-image img {
    width: 100%;
    object-fit: cover;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.custom-bg-blue {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 10px;
}

/* Sidebar progress bar container */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

/* Progress fill */
.scroll-progress-fill {
    width: 100%;
    height: 0;
    background: var(--primary-color, #007bff);
    transition: height 0.25s ease-out;
    border-radius: 3px;
}

/* Sidebar links */
.product-sidebar {
    position: sticky;
    top: 200px;
    padding-left: 20px;
}

.product-sidebar li {
    margin-bottom: 1rem;
    padding: 20px;
}

.product-sidebar a {
    text-decoration: none;
    color: var(--text-dark, #333);
    font-weight: 500;
}

.product-sidebar a.active {
    color: var(--primary-color, #007bff);
    font-weight: 600;
}


.icon {
    font-size: 30px;
    margin-right: 10px;
}

.section-header {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

.card {
    margin-bottom: 20px;
    height: -webkit-fill-available;
    border-radius: 10px !important;
}

.card-header {
    background-color: var(--secondary-color);
    color: white;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.card-body {
    font-size: 16px;
}

.card-title {
    font-weight: bold;
}

.icon-circle {
    background: linear-gradient(135deg, #004a999a, #004999);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 161, 178, 0.4);
    transition: all 0.3s ease;
}

/* Hover Effect */
.feature-item:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 161, 178, 0.6);
}

.l-bar {
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color, #004999);
    margin-top: 10px;
    border-radius: 2px;
}

#features h4 {
    color: var(--secondary-color, #004999);
}



@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        border-radius: 0;
        margin-top: 40px;
    }
    
      .mobile-header {
        display: flex;
        justify-content:space-between;
        align-items
    }

    .desktop-nav {
        display: none;
    }
   
   .product-sidebar{
       display:none;
   }
   
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1rem;
    }

   

    .business-card {
        padding: 2rem;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .value-icon {
        margin: 0 auto;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    
}



/* Animation keyframes */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* new add css */

.max-w-4xl {
    max-width: 896px;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0a2a6b, #3b82f6, #9A3B37);
  transform: translateX(-50%);
}

/* Timeline item base */
.timeline-item {
  width: 50%;
  position: relative;
  margin-bottom: 50px;
}

/* Left items */
.timeline-item.left {
  padding-right: 40px;
  text-align: right;
}

/* Right items */
.timeline-item.right {
  padding-left: 40px;
  margin-left: 50%;
}

/* Icons */
.timeline-icon {
  position: absolute;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon positioning */
.timeline-item.left .timeline-icon {
  right: -22px;
}
.timeline-item.right .timeline-icon {
  left: -22px;
}

/* Content box */
.timeline-content {
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.bg-blue {
  background-color: #0a2a6b !important;
}

.bg-yellow {
  background-color: #9A3B37 !important;
}

.year {
  font-size: 20px;
  padding: 5px 12px;
  font-weight: bold;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
}

/* ---------------------------------------------------
   RESPONSIVE FIX — MOBILE VIEW (ALL LEFT SIDE)
---------------------------------------------------- */

@media (max-width: 768px) {
  /* timeline line shifts left */
  .timeline::before {
    left: 25px;
    transform: translateX(0);
  }
  .timeline-item.left{
padding-right: 0 !important;
  }

  .timeline-item.right .timeline-icon{
    left: 0px !important;
  }

  /* All items become full width */
  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 60px;
    padding-right: 0;
    text-align: left !important;
  }

  /* Force all items to left side */
  .timeline-item.left,
  .timeline-item.right {
    padding-left: 60px;
    text-align: left;
  }

  /* Icon positioning (all left) */
  .timeline-item .timeline-icon {
    left: 0;
    right: auto;
  }
}

.bg-img {
  background: url("assets/tab_bg.jpg") no-repeat;
  background-size: cover;
}



/* Card Appearance */
.values-card {
  border-radius: 20px;
  background: #f7fafc;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
}

.values-card .card-header{
background-color: transparent;
color: #000;
}

.values-card:hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}



/* Top Border Colors */
.border-top-yellow {
  border-top: 4px solid #9A3B37 !important;
}

.border-top-blue {
  border-top: 4px solid #091b3c !important;
}

.bg-yellow-main{
 background: #9A3B37 !important;    
}

/* Icon Circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}



/* Responsive Text */
.card-body p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 10px;
}



.certificate-box {
  border: 2px dotted #2563eb; /* Tailwind blue-500 equivalent */
  padding: 15px;
  background: #f3f4f6; /* gray-100 */
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.certificate-box:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.certificate-img {
  mix-blend-mode: multiply;
  transition: transform 0.7s ease;
}

.certificate-box:hover .certificate-img {
  transform: scale(1.1);
}


/* ------------------------------
   General Colors
------------------------------ */
.bg-yellow {
  background-color: #9A3B37 !important;
}

.text-yellow {
  color: #9A3B37 !important;
}

/* ------------------------------
   CTA BOX
------------------------------ */
.cta-box {
  margin-top: -100px;
  position: relative;
  z-index: 20;
  border-radius: 20px;
  color: white;
  max-width: 750px;
}

.cta-box ul li {
  list-style: none;
  margin-bottom: 5px;
}

/* ------------------------------
   Footer Background
------------------------------ */
.footer-section {
  background-color: #091B3C;
  /*margin-top: 80px;*/
}

/* ------------------------------
   Footer Links
------------------------------ */
.footer-link {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: #9A3B37;
}

/* Social Icons */
.footer-section i:hover {
  color: #9A3B37;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    margin-top: -60px;
  }

  .cta-box h3 {
    font-size: 1.4rem;
  }
}
