/*Big Search bar On Every It Products Page*/

.search-product-container {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    max-width: 1000px;
    margin: 20px auto;
    border: 1px solid #ddd;
    height:70px !important;
    position:relative;
}
.search-product-container input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    font-size: 16px;
}
.search-product-container input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.search-product-container button {
    background-color: #0f6a6a;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    height: 55px;
}
.search-product-container button:hover {
    background-color: #0d5c5c;
}
.search-product-container .price-info {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
    text-align: right;
}
.search-product-container .price-info span {
    font-weight: bold;
    color: black;
}
.search-icon-btn {
    display: none; 
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    position: absolute;
    right: 15px;
    background-color: transparent;
    right: 15px; 
}
 @media (max-width: 768px) {
    .search-btn, .price-info , .s-icon{
        display: none;
    }
    .search-icon-btn {
        display: block; /* Show search icon button */
    }
}

/*4section of all services pages*/

.hero-web-design {
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.feature-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.cta{
    background: #007bff;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.why-choose-us-web-des {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}
.why-choose-us-web-des div {
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    transition: background 0.3s ease-in-out;
}
.why-choose-us-web-des div:hover {
    background: rgba(0, 123, 255, 0.1);
}
.why-choose-us-web-des i {
    font-size: 30px;
    color: #007bff;
    margin-right: 10px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}
.process-step {
    width: 18%;
    text-align: center;
    position: relative;
}
.process-step::after {
    content: '';
    width: 100%;
    height: 4px;
    background: #007bff;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.process-circle {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin: 0 auto 10px;
}
@media (max-width: 767px) {
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }       
    .process-step {
        width: 100%;
        position: relative;
    }
    .process-step::after {
        width: 4px;
        height: 50px;
        background: #007bff;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
    }
    .process-step:last-child::after {
        display: none;
    }
}

/*It-Services Section */
.services-section {
    background: #f5f7fa;
    padding: 5rem 0;
}

.services-section h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.underline {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #003366;
    margin: 10px auto;
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, #ffffff, #e3eaf2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content */
.service-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.service-text {
    font-size: 1rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-title {
        font-size: 1.2rem;
    }

    .service-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.1rem;
    }

    .service-text {
        font-size: 0.85rem;
    }
}



/*Website designing*/
.web-design-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: rgb(16,129,152);
    background: linear-gradient(90deg, rgba(16,129,152,1) 25%, rgba(0,195,170,1) 100%);
    border-radius: 12px;
            
}
.web-design-content {
    width: 50%;
    padding-right: 30px;
    animation: fadeInLeft 1s ease-in-out;
}

.web-design-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.web-design-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.web-design-image {
    width: 50%;
    text-align: right;
    animation: fadeInRight 1s ease-in-out;
}

.web-design-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.web-design-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
.web-design-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
}

.web-design-content,
.web-design-image {
    width: 100%;
    padding: 0;
}

.web-design-content {
    margin-bottom: 20px;
}

.web-design-image img {
    max-width: 100%;
}
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
.web-design{
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding-top:30px;
}
.web-con {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    max-width: 900px;
}
.web-con h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.web-feature-list p {
    font-size: 16px;
    line-height: 1.6;
}
.fa-check {
    color: #28a745;
    margin-right: 8px;
}
.highlight {
    font-weight: bold;
}
.italic {
    font-style: italic;
}


/*Web Application Development*/

.web-app-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: linear-gradient(to right, #28a745, #20c997);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.web-app-content {
    width: 50%;
    padding-right: 30px;
    animation: fadeInLeft 1s ease-in-out;
}
.web-app-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.web-app-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.web-app-image {
    width: 50%;
    text-align: right;
    animation: fadeInRight 1s ease-in-out;
}

.web-app-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.web-app-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .web-app-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
        }

    .web-app-content,.web-app-image {
        width: 100%;
        padding: 0;
        }

    .web-app-content {
        margin-bottom: 20px;
        }

    .web-app-image img {
        max-width: 100%;
        }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
.web-app-development {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 900px;
}
.web-app-development h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.web-app-development .feature-list p {
    font-size: 16px;
    line-height: 1.6;
}
.web-app-development .fa-check {
    color: #28a745;
    margin-right: 8px;
}
.web-app-development .highlight {
    font-weight: bold;
}
.web-app-development .italic {
    font-style: italic;
}        
        
        
        
/*Customize Software Development*/
   
.custom-software-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: linear-gradient(to right, #ff5733, #ff8c00);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.custom-software-content {
    width: 50%;
    padding-right: 30px;
    animation: fadeInLeft 1s ease-in-out;
}
.custom-software-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.custom-software-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.custom-software-image {
    width: 50%;
    text-align: right;
    animation: fadeInRight 1s ease-in-out;
}
.custom-software-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.custom-software-image img:hover {
    transform: scale(1.05);
    
}
 @media (max-width: 768px) {
    .custom-software-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .custom-software-content,.custom-software-image {
        width: 100%;
        padding: 0;
    }

    .custom-software-content {
        margin-bottom: 20px;
    }

    .custom-software-image img {
        max-width: 100%;
    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
.custom-software-dev {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 900px;
}
.custom-software-dev h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.custom-software-dev .feature-list p {
    font-size: 16px;
    line-height: 1.6;
}
.custom-software-dev .fa-check {
    color: #28a745;
    margin-right: 8px;
}
.custom-software-dev .highlight {
    font-weight: bold;
}
.custom-software-dev .italic {
    font-style: italic;
}   

/*Digital Marketing*/

.seo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.seo-content {
    width: 50%;
    padding-right: 30px;
    animation: fadeInLeft 1s ease-in-out;
}
.seo-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.seo-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.seo-image {
    width: 50%;
    text-align: right;
    animation: fadeInRight 1s ease-in-out;
}
.seo-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.seo-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .seo-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }
    .seo-content, .seo-image {
        width: 100%;
        padding: 0;
    }
    .seo-content {
        margin-bottom: 20px;
    }
    .seo-image img {
        max-width: 100%;
    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/*OutSourcing & tech Support*/
.outsourcing-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: linear-gradient(to right, #0072ff, #00c6ff);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.outsourcing-content {
    width: 50%;
    padding-right: 30px;
    animation: fadeInLeft 1s ease-in-out;
}
.outsourcing-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.outsourcing-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.outsourcing-image {
    width: 50%;
    text-align: right;
    animation: fadeInRight 1s ease-in-out;
}
.outsourcing-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.outsourcing-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .outsourcing-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }
    .outsourcing-content, .outsourcing-image {
        width: 100%;
        padding: 0;
    }
    .outsourcing-content {
        margin-bottom: 20px;
    }
    .outsourcing-image img {
        max-width: 100%;
    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}




        
/*IT Products*/
  

.hero-swiper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
}
.heroSwiper {
    width: 100%;
    overflow: hidden;
}
.hero-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    color: white;
    transition: transform 0.3s ease-in-out;
     padding: 0; /* Remove padding to avoid gaps */
    margin: 0; /* Ensure no margin between slides */
}
.content-ops {
    flex: 1;
    padding: 40px;
}
.content-ops h1 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}
.content-ops p {
    font-size: 18px;
    margin-top: 10px;
    color: #f1f1f1;
}
.content-ops .it-cta {
    margin-top: 20px;
}
.content-ops .it-cta a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.content-ops .it-cta a:hover {
    background-color: #e64a19;
}

.ratings span {
    margin-top:20px;
    font-size: 20px;
    line-height:34px;
}
.image-ops {
    flex: 1;
    display: flex;
    justify-content: center;
}
.image-ops img {
    width: 500px;
    height: 400px;
    /*border-radius: 10px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .hero-swiper-slide {
        flex-direction: column;
        padding: 0;
        text-align: center;
        position: relative;
        background: none;
    }

    .image-ops {
        width: 100%;
        height: auto;
    }

    .image-ops img {
        width: 100%;
        height: auto;
        display: block;
    }

    .content-ops {
        position: absolute;
        bottom: 0;
        width: 100%;
        color: white;
        padding:10px;
      
    }

    .content-ops h1 {
        font-size: 28px;
    }

    .content-ops p {
        font-size: 15px;
        font-weight: bold;
    }

    .content-ops .it-cta a {
        padding: 10px 15px;
        font-size: 17px;
        width: 250px;
        font-weight: 600;
    }

    .ratings {
        display: none; 
    }
}

@media screen and (max-width: 425px) {
    .content-ops .it-cta a {
        width: 100%;
    }
}
@media screen and (max-width: 320px) {
    .content-ops {
        padding:5px;
        padding-bottom:0px !important;
       margin-top:30px;
    }
    .content-ops p{
        margin:1px !important;
    }
    .it-cta{
        padding:0px 10px;
        margin-top:10px;
    }
    .content-ops .it-cta {
        margin-top:0px;
    }
}



.tech-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
    color: #b00020;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: rgb(250, 62, 62);
    margin: 10px auto;
}
.pro-mlm{
    margin-top:15px !important;
}
.pro-price {
    background-color: #0b3d91 !important;
    color: #fff;
    margin-top:10px !important;
    font-size: 13px;
    padding: 2px 6px;
}
.pro-price:hover{
    color: #fff;
}


/* Product Cards */

.product-container, .tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.product-card, .tech-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover, .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.product-card a, .tech-card h5 {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}
.product-card a:hover, .tech-card h5:hover {
    color: rgb(250, 62, 62);
}
.tech-card img {
    max-width: 50px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .product-card, .tech-card {
        width: 100%;
        max-width: 320px;
    }
}
 
.school { background-color: #fdebd0; } /* Light Orange */
.bms { background-color: #fadbd8; } /* Light Orange */
.ecommerce { background-color: #d5f5e3; } /* Light Green */
.billing { background-color: #fad7a0; } /* Light Yellow-Orange */
.hotel { background-color: #ebdef0; } /* Light Purple */
.crypto { background-color: #d6eaf8; } /* Light Blue */
.real-estate { background-color: #fadbd8; } /* Light Red */
.mlm { background-color: #e5e8e8; } /* Light Gray */
.e-learning { background-color: #d4e6f1; } /* Light Cyan */
.tour { background-color: #d1f2eb; } /* Light Teal */ 


/* Our Special Products Section */

.rtw-special-solutions {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.rtw-solutions-title {
    text-transform: uppercase;
    color: #000000;
}

.rtw-solutions-description {
    max-width: 900px;
    margin: 0 auto;
    color: #000000;
    font-size: 1.2rem;
}

/* Card Styling */
.rtw-solution-card {
    max-width: 80%;  
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rtw-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.rtw-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 20px;
}

.rtw-card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Card Body */
.rtw-card-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.rtw-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

.rtw-card-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

/* Buttons */
.rtw-solution-btn {
    background-color: #003366;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.rtw-solution-btn:hover {
    background-color: #ff6600;
    color: #fff;
}

/* Grid Layout */
.rtw-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.rtw-col {
    flex: 1 1 calc(50% - 15px);
    display: flex;
}

/* Responsive */
@media (max-width: 992px) {
    .rtw-col {
        flex: 1 1 100%;
    }

    .rtw-card-title {
        font-size: 1.3rem;
    }

    .rtw-card-text {
        font-size: 0.95rem;
    }

    .rtw-solution-btn {
        font-size: 0.9rem;
    }
     .rtw-solution-card {
        max-width: 90%; 
    }
}
@media (max-width: 768px) {
    .rtw-solution-card {
        max-width: 100%; 
    }
}

/*Our Technology Section*/

.tech-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-card {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    text-align: center;
    min-width: 150px;
}

/* Backend */
.ci { background-color: #ff914d; color: #fff; } 
.laravel { background-color: #c35fcc; color: #fff; } 
.java { background-color: #5fa7c7; color: #fff; } 
.spring { background-color: #6ecb55; color: #fff; } 

/* Frontend */
.html { background-color: #f07c49; color: #fff; } 
.css { background-color: #4d90e3; color: #fff; } 
.bootstrap { background-color: #9d7adf; color: #fff; }
.js { background-color: #ffd633; color: #333; } 
.react { background-color: #5fdafc; color: #333; } 
.angular { background-color: #ff6666; color: #fff; } 
.angularjs { background-color: #ff8080; color: #fff; }
.ajax { background-color: #4d9fe3; color: #fff; } 

/* Database & Cloud */
.mysql { background-color: #35b0c7; color: #fff; } 
.cloud { background-color: #8e8e8e; color: #fff; }

/*School Management System*/
.page-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.page-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}

/*E-commerce*/
.e-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.e-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}

/*Hotel Management System*/
.hotel-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background: rgb(58,180,150);
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.hotel-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}
/*estate page*/
.estate-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background: rgb(120,120,120);
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.estate-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}
/*crypto page*/
.crypto-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.crypto-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}
/*mlm page*/
.mlm-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.mlm-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}


/*BMS page*/
.business-card {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.business-card:hover {
    transform: scale(1.05);
    background: #007bff;
    color: white;
}