/* General styles for logos */
.logo-main, .logo-mobile {
   display: block !important;
}

/* Hide the mobile logo on larger screens */
.logo-mobile {
    display: none !important;
}

/* Hide the desktop logo on smaller screens */
.logo-main {
    display: block !important;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .sm-pt10{
        padding-top: 0;
    }
    header.header-mobile{
        padding-bottom: 0 !important;
    }
    .logo-main {
        display: none !important;
    }

    .logo-mobile {
        display: block !important;
        /* Adjust the size for mobile view */
        width: 60px !important; /* Example size, adjust as needed */
        height: auto !important; /* Maintain aspect ratio */
    }
    #menu-btn{
        margin-left: 10px !important;
    }
}


/* General Styles for Main Menu */
#mainmenu > li {
    display: block; /* Ensure all list items are visible by default */
}

/* Hide Specific Items on Mobile Screens */
@media (max-width: 768px) {
    #mainmenu{
        margin-top: 0 !important;
    }
    #mainmenu > li:nth-child(1), /* Home */
    #mainmenu > li:nth-child(2), /* About Us */
    #mainmenu > li:nth-child(3), /* Packages */
    #mainmenu > li:nth-child(4), /* Clients */
    #mainmenu > li:nth-child(5) { /* Contact */
        display: none !important; /* Ensure these items are hidden */
    }

    #mainmenu > li:nth-child(6) {
        display: block !important; /* Ensure MEDIA & FTP SERVERS remains visible */
    }

    #mainmenu > li:nth-child(6) > ul {
        display: block !important; /* Ensure submenu items are visible */
    }
}


/* Media query for larger screens (tablets and desktops) */
@media (min-width: 769px) {
    .logo-main {
        display: block !important;
        /* Adjust the size for desktop view */
        width: 70px !important; /* Example size, adjust as needed */
        height: auto !important; /* Maintain aspect ratio */
    }

    .logo-mobile {
        display: none !important;
    }
}



.footer-logo {
    width: 70px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .footer-logo {
        width:70px !important;
        height: auto !important;
        display: block;
    }

   
}

@media (max-width: 480px) {
    .footer-logo {
        width: 100px;
        height: 100px;
    }
    
}







/* package section code  */

.section-title {
    position: relative;
}

.section-title h2 {
    color: #1d2025;
    position: relative;
    margin: 0;
    font-size: 24px;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .section-title h2 {
        font-size: 34px;
    }
}

.section-title.title-ex1 h2 {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title.title-ex1 h2 {
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2 {
        padding-bottom: 40px;
    }
}

.section-title.title-ex1 h2::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: 110px;
    height: 1px;
    background-color: #d6dbe2;

}

@media (min-width: 768px) {
    .section-title.title-ex1 h2::before {
        bottom: 17px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2::before {
        bottom: 25px;
    }
}

.section-title.title-ex1 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: 40px;
    height: 1px;
    background-color: #0cc652;
}

@media (min-width: 768px) {
    .section-title.title-ex1 h2::after {
        bottom: 17px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2::after {
        bottom: 25px;
    }
}

.section-title.title-ex1 p {
    font-family: "Montserrat", sans-serif;
    color: #8b8e93;
    font-size: 14px;
    font-weight: 300;
}

.price-card {
    /* background: var(--bg-grey); */
    background: #ffffff;
    /* #f5f5f6 */
    padding: 40px 35px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Initial shadow */
}

.price-card:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.price-card:before,
.price-card:after {
    position: absolute;
    content: "";
    top: 0;
    right: -35px;
    width: 88px;
    height: 88px;
    background: #0cc652;
    opacity: 0.2;
    border-radius: 8px;
    transform: rotate(45deg);
}

.price-card:after {
    top: 30px;
}

.price-card h2 {
    font-size: 26px;
    font-weight: 600;
}

.price-card .btn {
    font-size: 11px;
    border-radius: 100px;
    padding: 0 25px;
    border: 0;
    color: #fff;
    float: right;
}

.price-card .btn.btn-primary {
    border: 0 !important;
}

.price-card.featured {
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.price-card:hover .btn {
    background: #0cc652;
    border-color: #0cc652;
}

.price span {
    display: inline-block;
    padding: 20px 36px 20px;
    padding-right: 0;
    font-size: 34px;
    font-weight: 6 00;
    color: #5A5A5A;
    position: relative;
}

.price span::before {
    position: absolute;
    content: "BDT";
    font-size: 16px;
    top: 0;
    font-weight: 300;
    left: 0;
}

.pricing-offers {
    padding: 0 0 0;
}

.pricing-offers li {
    padding: 0 0 16px;
    line-height: 18px;
}

ul li {
    list-style-type: none;
}

.btn.btn-mid {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
}

.row{
    --bs-gutter-x: 15px !important;

}


#packages{
 padding: 100px 0 100px 0 !important ;
}
   
.popular-tag {
    position: absolute;
    top: 0;
    left : 0;
    width: 80px ;
    border-top: 80px solid #0cc652;
    border-right: 80px solid transparent;

    /* color: #fff;
    padding: 5px 10px;  */
    /* border-radius: 5px;
    font-size: 12px;
    font-weight: bold;    */

}

.popular-tag .text{
    position: relative;
    top: -45px;
    left: 10px;
    rotate: -45deg;
    color: #fff;

}

.popular-tag .text p{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.price1 span  {
    /* padding: 49px 36px 20px; */
    padding-right: 0;
    font-size: 70px;
    font-weight: 600;
    color: #464646;
    position: relative;
    display: inline-block;
   
}

.price1
{    

    padding-top: 20px;
    border-bottom: 1px solid #cccccc;
}



#packages {
    background-color: #f7f7f7; /* Light gray */
}


.price-card .buttton-design{
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
  }
 
  

  /* Package  for mobile and tablet device */

    /* General styles for mobile and tablet responsiveness */
@media (max-width: 768px) {
    /* Reduce padding for the section */
    #packages {
        padding: 20px 0 !important; /* Reduce vertical padding */
    }

    /* Adjust card spacing */
    .price-card {
        padding: 20px; /* Reduce padding inside cards */
        margin-bottom: 15px; /* Increase spacing between cards */
        border-radius: 15px; /* Slightly smaller border-radius for compact design */
    }
     .mb-5{
        margin-bottom: 0 !important;
     } 
     


     .price-card:hover {
    transform: translateY(0) !important; /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
     }
    
    /* Adjust heading sizes */
    .price-card h2 {
        font-size: 25px; /* Smaller font for headings */
        margin-bottom: 0;
    
    }

    .price1 span {
        font-size: 60px; /* Smaller size for pricing numbers */
    }
    .price1{
        margin-bottom: 0;
    }

    .price-card p.price {
        font-size: 18px; /* Adjust pricing font size */
        margin-bottom: 0;
    }
     .margin-mobile{
        margin-left: 10px;
        margin-right: 10px;
     }
    /* Adjust text sizes */
    .price-card p {
        font-size: 15px; /* Smaller text for descriptions */
    }

    /* Center align pricing details */
    .price-card h2,
    .price-card p,
    .price-card .pricing-offers {
        text-align: center; /* Align text to the center */
    }

    /* Pricing offer list */
    .pricing-offers li {
        font-size: 14px; /* Smaller font for features */
        padding-bottom: 0;
    }

    /* Buttons */
    .price-card .buttton-design {
        justify-content: center;
        margin-top: 10px;
    }

    .popular-tag .text p{
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 0;
    }
}






/* Abou us  */

.about-padding{
   padding: 100px 0 100px 0 !important;
}

@media (max-width: 576px) {

    .about-padding{
        padding: 25px 0 0 0 !important;
     }

}

.about-margin{

    margin-left: 30% !important;

}

/* Responsive adjustments for mobile devices */

@media (max-width: 576px) {
    .de_count h3 {
        font-size: 1.8rem;
    }

    .de_count h4 {
        font-size: 1rem;
        line-height: 20px;
    }

    .subtitle.s2 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Client Section */

.Client-padding{
    padding-top: 150px !important;
    padding-bottom: 100px !important;
}

.Contact-Padding{
    padding: 100px 0 0 0 !important;
    
}  

@media(max-width: 576px ){
          .Client-padding{
            padding-top: 60px !important ;
            padding-bottom: 30px !important ;
          }

          .Contact-Padding{
            padding: 30px 0 0 0 !important;
            
        }  
        
}

/* Top Bar */


.topbar-socialicon i{
    border-radius: 50% !important;
    color: #fff !important;
    background: none !important;
    margin: 0 0 0 0 !important;
}


/* Contact Section */



.Contact-Padding p{
    margin-bottom: 0 !important;
}  

@media(max-width: 576px){
    .Contact-Padding h2{
     font-size: 1.5rem ;
    }  

    .Contact-Padding p{
        font-size: 0.95rem;
    }
    
}



/* Footer */

.helpdesk-margin{
      padding-bottom: 0;
}
.social-icon-design a i{
    border-radius: 50%;
}


/* Responsive Styles */
@media (max-width: 768px) {
    footer h5 {
        font-size: 24px !important;
    }

    footer p,
    footer ul li a {
        font-size: 16px !important;
    }

    .footer-logo {
        width: 60px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .subfooter .de-flex-col{
       font-size: 15px;
       font-weight: 500;
    }

    .subfooter{
        margin-top: 0 !important;
    }
    footer {
        padding: 30px 0 0 0;
      }
}

@media (max-width: 576px) {
    footer h5 {
        font-size: 0.9rem;
    }

    footer p,
    footer ul li a {
        font-size: 0.85rem;
    }

    .footer-logo {
        width: 50px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}




/* slider design */


/* Tablet styles */
@media (max-width: 768px) {
    .slider-title {
        font-size: 3.8rem !important; /* reduce for tablets */
    }
    .subtitle {
        font-size: 14px !important;
        font-weight: 500 !important;
    }
    .slider-teaser {
        font-size: 16px !important;
        line-height: 1.6em !important;
        font-weight: 400 !important;
    }
}

/* Mobile styles */
@media (max-width: 576px) {
    
    .subtitle {
        font-size: 0.8rem !important;
    }

    .slider-title {
        font-size: 2rem !important; /* reduce further for mobile */
    }

    .slider-teaser {
        font-size: 1rem !important;
    }
}



/* Tablet styles */
@media (max-width: 768px) {
    .btn-main {
        /* padding: 10px 18px;  */
        /* Smaller padding for tablets */
        font-size: 0.9rem !important; /* Slightly smaller font size */
    }
    .swiper-button-prev{
       display: none !important; 
    }
    .swiper-button-next{
        display: none !important; 
     }
}

/* Mobile styles */
@media (max-width: 576px) {
    .btn-main {
        /* padding: 8px 16px;  */
        /* Even smaller padding for mobile */
        font-size: 0.8rem !important; /* Smaller font size */
        /* width: 100%;  */
        /* Full width for mobile */
    }
}























































