body {
    font-family: 'Arial', sans-serif;
}
.navbar-custom {
    background: rgba(31, 31, 31, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(244, 164, 96, 0.2);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar-custom .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    color: #f4a460 !important;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #f4a460 !important;
    background: rgba(244, 164, 96, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(244, 164, 96, 0.15);
    color: #f4a460 !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: rgba(244, 164, 96, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(244, 164, 96, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(31, 31, 31, 0.98);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(244, 164, 96, 0.1);
    }

    .navbar-nav {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-link {
        text-align: center;
        padding: 0.75rem !important;
    }

    .nav-link:hover {
        transform: translateX(5px);
    }
}


.hero-section {
    background-color: rgba(31, 31, 31, 0.2);
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: slideInFromLeft 1s ease forwards;
}

.hero-title .highlight {
    color: #f4a460;
    opacity: 0;
    animation: slideInFromRight 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.6;
    color: #eee;
}

@media (max-width: 770px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
        margin-top: 80px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

.lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-subtitle ul {
    margin-top: 40px;
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-subtitle li {
    font-size: 1.1rem;
    opacity: 0;
    display: inline-flex;
    align-items: center;
    background: rgba(244, 164, 96, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid rgba(244, 164, 96, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-subtitle li:nth-child(odd) {
    animation: slideInFromLeft 0.6s ease forwards;
}

.hero-subtitle li:nth-child(even) {
    animation: slideInFromRight 0.6s ease forwards;
}

.hero-subtitle li:nth-child(1) { animation-delay: 1.2s; }
.hero-subtitle li:nth-child(2) { animation-delay: 1.4s; }
.hero-subtitle li:nth-child(3) { animation-delay: 1.6s; }
.hero-subtitle li:nth-child(4) { animation-delay: 1.8s; }
.hero-subtitle li:nth-child(5) { animation-delay: 2s; }

.hero-subtitle li:hover {
    transform: translateY(-3px);
    background: rgba(244, 164, 96, 0.25);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.3);
}

.btn-custom {
    background-color: #f4a460;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2.2s;
}

.btn-custom:hover {
    background-color: #e08d4d;
    color: #fff;
    transform: scale(1.05);
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at center, transparent 0%, #1f1f1f 70%),
        linear-gradient(45deg, transparent 40%, rgba(244, 164, 96, 0.1) 45%, transparent 50%),
        linear-gradient(-45deg, transparent 40%, rgba(244, 164, 96, 0.1) 45%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero-section .floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-section .floating-particles::before,
.hero-section .floating-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(244, 164, 96, 0.3);
    border-radius: 50%;
    box-shadow: 
        0 0 60px 30px rgba(244, 164, 96, 0.05),
        100vw 0 60px 30px rgba(244, 164, 96, 0.05),
        200vw 0 60px 30px rgba(244, 164, 96, 0.05),
        -100vw 0 60px 30px rgba(244, 164, 96, 0.05);
    animation: float 8s linear infinite;
}

.hero-section .floating-particles::after {
    animation-delay: -4s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}


.hero-section {
    background-color: rgba(31, 31, 31, 0.2);
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* [Previous CSS rules remain unchanged until media queries] */

/* Updated and New Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle ul {
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle li {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 770px) {
    .hero-section {
        height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
        margin-top: 80px;
    }
    
    .hero-title .highlight {
        display: block !important;
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-subtitle ul {
        margin-top: 20px;
        gap: 10px;
    }
    
    .hero-subtitle li {
        width: calc(50% - 10px);
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 80px;
    }
    
    .lead {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-subtitle li {
        width: 100%;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .btn-custom {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* [Rest of the previous CSS remains unchanged] */

/* about us section */


.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f4a460;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4a460, transparent);
}

.section-header .lead {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.3s;
}

.about-description .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 0px;
    background: rgba(244, 164, 96, 0.05);
    border-radius: 10px;
    border-left: 4px solid #f4a460;
    margin: 1rem auto;
    max-width: 90%;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    color: #fff;
}

.about-section .section-header h2 {
    color: #f4a460;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 164, 96, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(244, 164, 96, 0.2) !important;
}

.card-icon {
    color: #f4a460;
}

.card-title {
    color: #f4a460;
    font-weight: 600;
}

.expertise-card ul li {
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.expertise-card ul li:hover {
    transform: translateX(10px);
    opacity: 1;
}

.expertise-card .fa-check-circle {
    color: #f4a460;
    font-size: 0.9rem;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
}

/* services section */
.services-box {
    height: 100%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244,164,96,0.2);
}

.services-box h4 {
    color: #333;
    margin: 20px 0;
    font-weight: 600;
}

.services-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 50px;
}

.services-box i {
    border-color: #f4a460 !important;
    padding: 20px !important;
    transition: all 0.3s ease;
}

.services-box:hover i {
    background: #f4a460;
    color: white !important;
    transform: rotate(360deg);
}

.services-box i {
    font-size: 40px;
    color: #f4a460;
    margin-bottom: 15px;
}
.list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.list-unstyled li {
    min-height: 32px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.services-box .list-unstyled {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

@media (max-width: 600px) {
    .services-box .list-unstyled {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.services-box .list-unstyled li {
    display: table-row;
    align-items: center;
    background: linear-gradient(90deg, rgba(244,164,96,0.07) 0%, transparent 100%);
    margin-bottom: 0;
    padding: 10px 14px 10px 12px;
    border-radius: 8px;
    color: #232323;
    font-size: 1.07rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(244,164,96,0.07);
    border-left: 3px solid #f4a460;
    gap: 10px;
    border-bottom: 1px solid #f4a4601a;
    position: relative;
    transition: 
        color 0.2s,
        background 0.3s,
        box-shadow 0.3s,
        border-left 0.3s;
    cursor: pointer;
}

.services-box .list-unstyled li:hover {
    background: linear-gradient(90deg, rgba(244,164,96,0.18) 0%, transparent 100%);
    color: #e08d4d;
    border-left: 3px solid #e08d4d;
    box-shadow: 0 4px 16px rgba(244,164,96,0.13);
}

.services-box .list-unstyled li:last-child {
    border-bottom: none;
}

.services-box .list-unstyled li i {
    color: #f4a460;
    margin-right: 8px;
    font-size: 1.1em;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
    border-radius: 50%;
    margin-top: 0;
}

.services-box .list-unstyled li:hover {
    color: #e08d4d;
    background: none;
    border-left: none;
    border-radius: 0;
}

.services-box .list-unstyled li:hover i {
    color: #e08d4d;
    transform: scale(1.08) rotate(-4deg);
}
.services-box .list-unstyled li::before {
    display: none;
}

.products-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.product-slider {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.product-card {
    min-width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(244, 164, 96, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(244, 164, 96, 0.2);
}

.product-image {
    height: 200px;
    width: 200px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(244, 164, 96, 0.2),
        transparent
    );
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    pointer-events: none;
}

.product-image {
    position: relative;
    width: 200px;
    height: 200px;
}

/* Only for the card with alt="Product 3" */
.product-image img[alt="Product 3"] {
    z-index: 1;
}

.product-image img[alt="Secondary GI Structure"] {
    z-index: 2;
    opacity: 0;
}

.product-card:hover .product-image img[alt="Product 3"] {
    opacity: 0;
}

.product-card:hover .product-image img[alt="Secondary GI Structure"] {
    opacity: 1;
}

/* Prevent this effect for other product cards */
.product-card:not(:has(img[alt="Product 3"])) .product-image img {
    opacity: 1 !important;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image::before {
    transform: translateX(100%);
}

.product-card:hover .product-image {
    box-shadow: 0 12px 25px rgba(244, 164, 96, 0.2);
    background: white;
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: drop-shadow(0 6px 12px rgba(244, 164, 96, 0.3));
}

.product-card h4 {
    color: #f4a460;
    font-size: 1.2rem;
    margin: 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(244, 164, 96, 0.2);
    border: none;
    color: #f4a460;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-nav:hover {
    background: rgba(244, 164, 96, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.business-tieups-section {
    padding: 30px 0;
    height: 250px;
    background: linear-gradient(135deg,#8a8a8a 0%, #ffffff 50%, #8a8a8a 100%);
    position: relative;
    overflow: hidden;
    border: 5px solid #050505;
}

.business-tieups-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244,164,96,0.05) 0%, rgba(255,255,255,0.8) 70%);
    animation: rotate 20s linear infinite;
}

.tieup-box {
    background: rgba(255, 255, 255, 0.05);
    width:  400px;
    height: 540px;
    padding: 40px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244,164,96,0.2);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tieup-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244,164,96,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tieup-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(244,164,96,0.3);
    border-color: rgba(244,164,96,0.5);
}

.tieup-box:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

.tieup-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    background: white;  /* Changed to white background */
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tieup-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(244, 164, 96, 0.2),
        transparent
    );
    transition: 0.5s;
}

.tieup-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    border: 5px black;
}

.tieup-box:hover .tieup-image {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(244, 164, 96, 0.2);
    background: white;  /* Keep white background on hover */
}

.tieup-box:hover .tieup-image::before {
    left: 100%;
}

.tieup-box:hover .tieup-image img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(244, 164, 96, 0.3));
}

.tieup-box h4 {
    color: #f4a460;
    margin: 20px 0;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(108, 108, 108, 0.3);
    transition: all 0.3s ease;
}

.tieup-box:hover h4 {
    transform: scale(1.05);
    color: #191818;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.business-tieups-section h2 {
    color: #f4a460 !important;
    margin-bottom: 60px !important;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.business-tieups-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f4a460, transparent);
}

.section-header {
    margin-bottom: 50px;
}
.business-tieups-section {
    padding: 50px 0;
    height: 540px;
    background: linear-gradient(135deg,#8a8a8a 0%, #ffffff 50%, #8a8a8a 100%);
    position: relative;
    overflow: hidden;
    border: 5px solid #050505;
}

/* [Previous CSS rules remain unchanged until media queries] */

/* Media Queries */
@media (max-width: 1200px) {
    .business-tieups-section {
        height: auto;
        padding: 40px 0;
    }

    .tieup-box {
        width: 350px;
        height: 280px;
        margin: 0 auto 30px;
    }

    .tieup-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 991px) {
    .business-tieups-section {
        padding: 30px 0;
    }

    .business-tieups-section h2 {
        font-size: 2rem;
        margin-bottom: 40px !important;
    }

    .tieup-box {
        width: 300px;
        height: 250px;
        padding: 30px 15px;
    }

    .tieup-image {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
    }

    .tieup-box h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .business-tieups-section {
        padding: 25px 0;
    }

    .tieup-box {
        width: 280px;
        height: 230px;
        margin: 0 auto 25px;
    }

    .tieup-image {
        width: 120px;
        height: 120px;
    }

    .business-tieups-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .business-tieups-section {
        padding: 20px 0;
    }

    .tieup-box {
        width: 260px;
        height: 220px;
        padding: 20px 10px;
    }

    .tieup-image {
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .business-tieups-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px !important;
    }

    .tieup-box h4 {
        font-size: 1.1rem;
        margin: 15px 0;
    }
}




/* my footer css */
.site-footer {
    background-color: #1f1f1f;
    padding: 60px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #d1d1d1;
    border-top: 4px solid #f4a460;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: shine 4s infinite linear;
    z-index: 2;
}

@keyframes shine {
    to {
        left: 150%;
    }
}

.site-footer h6 {
    color: #f4a460;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
}

.site-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f4a460;
    animation: expand-line 1.5s ease-in-out forwards;
}

@keyframes expand-line {
    0% { width: 0; }
    100% { width: 50px; }
}

.site-footer a {
    color: #bdbdbd;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-footer a:hover {
    color: #f4a460;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(10px);
}

.footer-links i {
    color: #f4a460;
    margin-right: 8px;
}

.social-icons {
    padding-left: 0;
    margin: 20px 0 0;
    list-style: none;
    text-align: right;
}

.social-icons li {
    display: inline-block;
    margin: 0 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #292929;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    background-color: #f4a460;
    color: #1f1f1f;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 6px 15px rgba(244, 164, 96, 0.6);
}

.social-icons a.facebook:hover { background-color: #3b5998; }
.social-icons a.twitter:hover { background-color: #1da1f2; }
.social-icons a.linkedin:hover { background-color: #0077b5; }

.copyright-text {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #b5b5b5;
    padding: 15px 0;
    position: relative;
}

.copyright-text a {
    color: #f4a460;
    font-weight: bold;
}

@media (max-width: 991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px;
        text-align: center;
    }

    .social-icons {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 20px;
    }

    .copyright-text {
        margin-top: 20px;
    }
}

.site-footer {
    background-color: #1f1f1f;
    padding: 60px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #d1d1d1;
    border-top: 4px solid #f4a460;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* [Previous CSS rules remain unchanged until media queries] */

/* Updated and New Media Queries */
@media (max-width: 1200px) {
    .site-footer {
        padding: 50px 15px;
    }

    .site-footer h6 {
        font-size: 18px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px;
        text-align: center;
    }

    .social-icons {
        text-align: center;
    }

    .site-footer h6::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 10px 20px;
    }

    .site-footer h6 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-links li {
        padding: 6px 0;
    }

    .copyright-text {
        margin-top: 20px;
        font-size: 12px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 10px 15px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons li {
        margin: 0 3px;
    }

    .copyright-text {
        padding: 10px 0;
        line-height: 1.4;
    }
}
