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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: #fafbfc;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 100px; /* slightly smaller for sleeker look */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 90px; /* adjusted to match new height */
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a,
.nav-links>li>span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.nav-links>li>a:hover,
.nav-links>li>span:hover {
    background: rgba(25, 118, 200, 0.1);
    color: #1976c8;
}

.nav-links>li>a.active,
.nav-links>li>span.active {
    color: #1976c8;
    font-weight: 600;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    min-width: 250px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 200;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.dropdown a:last-child {
    margin-bottom: 0;
}

.dropdown a:hover {
    background: rgba(25, 118, 200, 0.08);
    color: #1976c8;
    transform: translateX(4px);
}

.nav-links>li:hover .dropdown {
    display: block;
}

.nav-cta {
    background: linear-gradient(135deg, #1976c8 0%, #0d5aa7 100%);
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(25, 118, 200, 0.2) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 200, 0.4) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 28px;
    color: #333;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0d2b4e 0%, #1976c8 50%, #0f5aa2 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 200px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    font-size: 18px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero h1 span {
    background: linear-gradient(to right, #ffffff, #a8c8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-actions .btn-primary {
    color: #0d2b4e;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    background: #f9fbff;
}

.hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-4px);
}

/* STATS */
.stats-bar {
    background: linear-gradient(135deg, #0d2b4e 0%, #1a4d7a 100%);
    color: #fff;
    padding: 60px 24px;
}

.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #4ab5f7;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION UTILS */
section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    color: #1976c8;
    background: rgba(25, 118, 200, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #0d2b4e;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 18px;
    color: #667085;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976c8, #0f5aa2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(25, 118, 200, 0.12);
    transform: translateY(-8px);
    border-color: transparent;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(25, 118, 200, 0.1), rgba(15, 90, 162, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1976c8;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.product-card:hover .product-icon {
    background: #1976c8;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d2b4e;
}

.product-card p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    flex: 1;
}

.product-link {
    font-size: 15px;
    font-weight: 600;
    color: #1976c8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 12px;
}

/* WHY US */
.why-bg {
    background: linear-gradient(135deg, #f3f7fc 0%, #f9fbff 100%);
    padding: 100px 24px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    box-shadow: 0 16px 32px rgba(25, 118, 200, 0.1);
    transform: translateY(-6px);
    border-color: #1976c8;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0d2b4e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-card p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
}

/* INDUSTRIES */
.industries-bg {
    background: linear-gradient(135deg, #fff 0%, #f9fbff 100%);
    padding: 100px 24px;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.industry-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #333;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.industry-pill:hover {
    background: linear-gradient(135deg, #1976c8, #0f5aa2);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(25, 118, 200, 0.2);
}

/* ABOUT US */
.about-section {
    background: #fff;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content p {
    font-size: 16px;
    color: #667085;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-image {
    position: relative;
}
.img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(25, 118, 200, 0.1), rgba(15, 90, 162, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #1976c8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* BLOG */
.bg-light {
    background: #fcfdfe;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(25, 118, 200, 0.1);
    border-color: #1976c8;
}
.blog-img {
    height: 220px;
    background: #e2e8f0;
}
.blog-card:nth-child(1) .blog-img {
    background: linear-gradient(135deg, #1976c8 0%, #0f5aa2 100%);
    opacity: 0.85;
}
.blog-card:nth-child(2) .blog-img {
    background: linear-gradient(135deg, #0d2b4e 0%, #1a4d7a 100%);
    opacity: 0.85;
}
.blog-card:nth-child(3) .blog-img {
    background: linear-gradient(135deg, #4ab5f7 0%, #1976c8 100%);
    opacity: 0.85;
}
.blog-info {
    padding: 32px 24px;
}
.blog-date {
    font-size: 13px;
    color: #1976c8;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 0.5px;
}
.blog-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0d2b4e;
    margin-bottom: 16px;
    line-height: 1.4;
}
.blog-info p {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 24px;
}
.blog-link {
    font-size: 15px;
    font-weight: 700;
    color: #1976c8;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blog-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* CONTACT CTA */
.cta-section {
    background: #fff;
}

.cta-inner {
    background: linear-gradient(135deg, #0d2b4e 0%, #1976c8 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(25, 118, 200, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner h2 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-inner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-cta {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-4px);
}

/* FOOTER */
.footer {
    background: #0d2b4e;
    color: #a8c8e8;
    padding: 100px 24px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976c8, #4ab5f7);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-logo i {
    color: #4ab5f7;
}

.brand-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #a8c8e8;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #1976c8;
    border-color: #1976c8;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(25, 118, 200, 0.4);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4ab5f7;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 50px;
}

.footer-col a, .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #a8c8e8;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-col a i, .contact-item i {
    font-size: 18px;
    color: #4ab5f7;
    margin-top: 11px;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(6px);
}

.newsletter-col p {
    font-size: 14px;
    color: #a8c8e8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: #4ab5f7;
    box-shadow: 0 0 10px rgba(74, 181, 247, 0.2);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: #1976c8;
    border: none;
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #4ab5f7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 80px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7aabcc;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal .dot {
    color: rgba(255,255,255,0.2);
}

.footer-legal a {
    color: #7aabcc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid, .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 20px;
        height: 80px;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links>li {
        width: 100%;
    }

    .nav-links>li>a,
    .nav-links>li>span {
        padding: 16px 24px;
        border-radius: 0;
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        border-radius: 0;
        padding: 10px 24px;
        display: none;
    }

    .nav-links>li:hover .dropdown {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 40px);
    }

    .btn-primary, .btn-outline {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* HERO SLIDER STYLES */
.hero {
    position: relative;
    min-height: 80vh; /* height adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px;
    background: #0d2b4e; /* Fallback color */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth transition */
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Content above images */
    text-align: center;
    max-width: 1200px;
}

/* Ensure text is readable over images */
.hero h1, .hero p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- RESPONSIVE CSS FOR HERO SLIDER --- */

@media (max-width: 992px) {
    .hero {
        min-height: 70vh; /* Tablet पर थोड़ी कम ऊंचाई */
        padding: 120px 32px 80px;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px; /* Mobile पर फिक्स्ड ऊंचाई ताकि कंटेंट समा सके */
        padding: 140px 20px 60px;
        display: flex;
        align-items: center;
    }

    .slide {
        background-position: center center; /* इमेज का बीच का हिस्सा दिखेगा */
    }

    /* मोबाइल पर काली लेयर को थोड़ा और गहरा करना ताकि टेक्स्ट साफ़ दिखे */
    .slide::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); 
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column; /* मोबाइल पर बटन्स एक के नीचे एक आएंगे */
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions .btn-primary, 
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
}

/* About Collage Container */
.collage-container {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

/* Main Large Image */
.main-img {
    width: 80%;
    height: 400px;
    z-index: 1;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Secondary Overlapping Image */
.sub-img {
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid #fff; /* White border for collage look */
    overflow: visible;
}

.sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Floating Badge on Image */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: #1976c8;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(25, 118, 200, 0.3);
    z-index: 3;
}

.experience-badge .num {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.experience-badge .txt {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effect */
.collage-container:hover .main-img {
    transform: scale(1.02);
}

.collage-container:hover .sub-img {
    transform: translateY(-10px);
}

/* Responsive Mobile Collage */
@media (max-width: 768px) {
    .collage-container {
        padding: 20px;
        margin-top: 40px;
    }
    
    .main-img {
        width: 100%;
        height: 300px;
    }

    .sub-img {
        width: 150px;
        height: 150px;
        left: -10px;
        bottom: -20px;
    }

    .experience-badge {
        right: 0;
        padding: 10px;
    }
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.industry-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.industry-img {
    width: 100%;
    height: 100%;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient Overlay on each card */
.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 43, 78, 0.9) 0%, rgba(13, 43, 78, 0.2) 60%, transparent 100%);
    transition: opacity 0.3s ease;
}

.industry-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-align: center;
}

.industry-info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.industry-card:hover .industry-img img {
    transform: scale(1.15);
}

.industry-card:hover h4 {
    transform: translateY(-5px);
    color: #4ab5f7; /* Hover color accent */
}

.industry-card:hover::after {
    background: linear-gradient(to top, rgba(25, 118, 200, 0.95) 0%, rgba(13, 43, 78, 0.3) 100%);
}

/* Responsive fixes */
@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .industry-card {
        height: 200px;
    }
}

/* Blog Image Styling */
.blog-img {
    width: 100%;
    height: 300px; /* फिक्स्ड हाइट */
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज स्ट्रेच नहीं होगी */
    transition: transform 0.5s ease;
}

/* Hover Effect: Zoom image on card hover */
.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* सभी कार्ड्स एक समान ऊंचाई के रहेंगे */
}

.blog-info {
    flex-grow: 1; /* कंटेंट कम होने पर भी कार्ड की ऊंचाई बराबर रहेगी */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-info h4 {
    margin-bottom: 12px;
    min-height: 50px; /* टाइटल के लिए फिक्स्ड स्पेस */
}

/* --- FIXED PRODUCT CARDS --- */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    padding: 0 !important; /* बहुत ज़रूरी: कार्ड की पुरानी पैडिंग हटा दी */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* इमेज की एक समान ऊंचाई */
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेज को बिना खींचे पूरे डिब्बे में सेट करेगा */
    display: block;
}

/* इमेज के ऊपर आइकन */
.product-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #1976c8;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* टेक्स्ट कंटेंट की पैडिंग */
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0d2b4e;
}

.product-info p {
    font-size: 15px;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-img-wrapper {
        height: 240px;
    }
}

/* --- UNIVERSAL BUTTON STYLING --- */

/* Primary Button (Main Call to Action) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1976c8;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0d5aa7;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(25, 118, 200, 0.3);
}

/* Secondary/Small Buttons (Blog links/Product links) */
.blog-link, .product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1976c8;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.blog-link:hover, .product-link:hover {
    color: #0d2b4e;
    gap: 15px; /* Hover par arrow thoda aage badhega */
}

/* Read Our Story Button (Specific fix) */
.about-content .btn-primary {
    margin-top: 20px !important;
}

/* Footer Logo Container Fix */
.brand-col {
    text-align: center; /* Poore column ka text center karne ke liye */
    display: flex;
    flex-direction: column;
    align-items: center; /* Logo aur description dono ko center karega */
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white; /* Logo ke peeche white background */
    padding: 15px 25px; /* Side mein thoda zyada space */
    border-radius: 50px 10px 50px 10px; /* Stylish Curve (S-shape curve) */
    width: fit-content; /* Jitna logo hai utna hi bada box */
    margin: 0 auto 24px; /* Center alignment aur niche se gap */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Thodi depth ke liye */
}

.footer-logo img {
    display: block;
    max-width: 94px; /* Logo ki width control karne ke liye */
    height: auto;
}

.brand-col p {
    margin: 0 auto 24px; /* Description ko bhi center mein rakhne ke liye */
}

.social-links {
    justify-content: center; /* Social icons ko center karega */
}