

  @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,300&family=Manrope&family=Questrial&family=Zen+Dots&display=swap');



*
{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body{
    font-family: 'Questrial', sans-serif;
}
a{
    text-decoration: none;
}
.navbar-light .navbar-toggler-icon
{
    display: none;
}
.navbar-light .navbar-toggler
{
    background-color: #00000000;
    height: 20px;
    border: 3px solid #e76d00;
}
       /* Custom CSS for the navbar */
       .navbar-logo {
        max-height: 80px; /* Adjust the height of the logo */
    }

    /* Add dropdown styling */
    .dropdown-menu {
        background-color: #e76d00; /* Background color of the dropdown menu */
        text-align: left;
        /* margin: 0 10px; */
        margin: 0 auto; 
        }
        .dropdown-menu a
        {
            color: #fff;
        }
     
        /* Add custom CSS to display the dropdown menu on hover */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        .navbar-nav li
        {
            padding: 0 20px;
            font-size: 1.1rem;
      
        }
        .navbar-light .navbar-nav .nav-link

        {
            color: #252525;
        }
        
       

        .carousel-item
        {
            height: 650px;
            /* height: auto; */
        }
        
        .carousel-item::after{
            content: ""; 
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: linear-gradient(90deg, #000000, #e1517ca6);
            opacity: .7; */
        }
    
        .carousel-caption
        {
            position: absolute;
            top: 40%;
       
        }
        .carousel-caption h3
        {
            font-size: 4rem;
            font-weight: 800;
            background-color: #e76c00be;
            border-bottom: 4px solid #ffffff;
            z-index: -1;
        }
      

        .sidebar {
            position: fixed;
            top: 40%;
            right: -250px; /* Initially hidden on the right */
            width: 170px; /* Set the width of the sidebar */
            height: 40%;
            background-color: #1f1f1fd1;
            color: #fff;
            text-align: center;
            padding: 0 10px;
            z-index: 5; /* Ensure it appears above the page content */
            transition: right 0.5s; /* Add a transition effect */
            border-radius: 20px;
            overflow: hidden;
        }

        .sidebar.show {
            right: 0; /* Display the sidebar when 'show' class is applied */
        }

        /* Logo Image Styles */
        .sidebar img {
            width: 150px; /* Set the width of the logo image */
            height: auto;
            display: block;
     
            overflow: hidden;
            /* transition: transform .5s; */
            animation: crescendo 1.5s alternate infinite ease-in;
        }
        .sidebar a
        {
            text-decoration: none;
        }
        .sidebar:hover 
        {
           border: 3px solid #e76c00;
           outline: none;
        }

        @keyframes crescendo {
            0%   {transform: scale(.8);}
            100% {transform: scale(1.1);}
          }

        /* Text Styles */
        .sidebar h2 {
            font-size: 14px;
            color: #fff;
            background-color: #e76c00;
            padding: 5px 5px;
            border-radius: 20px;
            text-transform: capitalize;
            text-align: center;

        }
        .sidebar h6{
            color: #fff;
            font-size: .6rem;
        }

   

        /* Add class 'show' to the sidebar and 'scrolled' to the content when scrolling 10% */
        .scrolled > .sidebar {
            right: 0;
        }

        .scrolled > .sidebar.show {
            right: 250px;
        }
    





        .section-title
        {
            text-align: center;
            padding: 20px 0;
            /* padding: 20px; */
          
       
            
        }
         .section-title h1
         {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e76c00be;
            
         }
         .section-title h3
         {
            font-size: 3rem;
            font-weight: 700;
            border-bottom: 1px solid #eeeeee3a;
         }
    
        .card-row
        {
            padding-top: 50px;
            display: flex;
            justify-content: center;
            
        }
        .card-body h5
        {
            text-transform: capitalize;
        }
        .card
        {
            background-color: transparent;
            text-align: center;
            width: 17rem;
            color: #ffffff;
            margin: 5px 5px;
            z-index: -1;
        }
        .card img
        {
            width: 100px;
            margin: auto;
            z-index: -1;
            
        }
        .card-title
        {
            color: #000;
        }

        /* card image */

        .cardBox {
            width: 350px;
            height: 250px;
            position: relative;
            display: grid;
            place-items: center;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px 0px,
              rgba(0, 0, 0, 0.2) 0px 2px 25px 0px;
              margin: 10px 5px;
              /* z-index: -1; */
             
          }
          .cardBox
          {
            text-decoration: none;
          }
          .cardBox-img {
            position: absolute;
            width: 98%;
            height: 98%;
            background: #000814d5;
            border-radius: 20px;
            z-index: 5;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            color: #ffffff;
            overflow: hidden;
            padding: 20px 0;
            cursor: pointer;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 60px -12px inset,
              rgba(0, 0, 0, 0.5) 0px 18px 36px -18px inset;
              transition: transform .2s; /* Animation */
              
          }
          .cardBox-img img
          {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            aspect-ratio: 16/9;

          }
          .cardBox-img:hover
          {
            transform: scale(1.2);
          }
          .cardBox-img h3, span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 800;
            /* pointer-events: none; */
            opacity: 0.9;
            background-color: #e76d00;
            padding: 10px 20px;
          }
          
          span {
            top: 75%;
          }
          
     
       
      
       
          
          .cardBox::before {
            content: "";
            position: absolute;
            width: 20%;
            height: 150%;
            /* background: #40E0D0; */
          background: -webkit-linear-gradient(to right, #e1517c, #ffffff4b, #ffffff8d);
          background: linear-gradient(to right, #e1517c, #ffffff51, #ffffff7a);
            animation: glowing01 5s linear infinite;
            transform-origin: center;
            animation: glowing 5s linear infinite;
          }
          
          @keyframes glowing {
            0% {
              transform: rotate(0);
            }
            100% {
              transform: rotate(360deg);
            }
          }


          /* testimonial */
              /* Custom CSS for the testimonial */
        /* .testimonial {
            background-color: #f0f0f084;
            border-radius: 10px;
            padding: 20px;
     
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            display: flex;
            justify-content: space-between;
        } */

        .testimonial
        {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 100px 0;
            /* margin: auto; */
           
        }

        .test-col-1
        {
            width: 400px;
            padding: 0 20px;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            border-radius: 20px;
            margin: 0 20px;
        }
        .test-col-1 img
        {
            width: 100%;
           
        }
        .test-col-2
        {
            background-color: #f0f0f084;
            max-width: 400px;
            padding: 10px 20px;
            border-radius: 20px;
        }
        .test-col-2 p
        {
            font-size: 1.1rem;
            padding-top: 100px;
        }

        /* Quote icon styling */
        .quote-icon i{
            font-size: 120px;
            color: #333;
            right: 25%;
            position: absolute;
       
            /* left: 50%; */
            /* transform: translateX(-50%); */
        }


        .bg-ground
        {
            z-index: -1;
            position: absolute;
            opacity: .5;
            margin: auto;
        }

    /* clients */

    .client-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        align-items: center;
    }

    .client-logo {
        /* flex: 1; */
        max-width: 230px;
        /* height: 200px; */
        margin: 10px;
    }

    .client-logo img {
        width: 100%;
        height: auto;
        display: block;

      
    }

              /* Custom CSS for the footer */
              .footer {
                background-color: #1f1f1fd1;
                color: #fff;
                padding: 10px 0;
                
            }
    
            .footer-logo {
                max-width: 150px; /* Adjust the logo width */
                /* padding: 10px 0; */
            }
    
            .social-icons {
                list-style: none;
               
            }
    
            .social-icons li {
                display: inline-block;
                margin-right: 15px; 
                padding-top: 10px;
                
            }
            .usefull-inks li
            {
                display: inline-block;
                list-style: none;
                padding: 5px 10px;
                margin-top: 10px;
            }
            .usefull-inks a
            {
                text-decoration: none;
                color: #dcdbdb;
            }
            .usefull-inks a:hover
            {
                color: #a9a9a9;
            }
            .social-icons a {
                color: #fff;
                text-decoration: none;
                font-size: 28px;
               
            }

            #scrollToTopButton {
                display: none;
                position: fixed;
                bottom: 50px;
                right: 20px;
                background-color: #08080858;
                color: #fff;
                border: 1px solid white;
        
                border-radius: 50%;
                width: 40px;
                height: 40px;
                font-size: 24px;
                cursor: pointer;
            }
            
            #scrollToTopButton:hover {
                background-color: #08080858;
                color: #00000066;
                outline: none;
            }



.fa-whatsapp
{
    background-color: green;
    padding: 10px 10px;
}


@media only screen and (max-width: 780px) {


    .test-col-1
    {
        width: 300px;
        margin: auto;
        padding: 0 10px;
    }
    
    .test-col-2
    {
        width: 350px;
        margin: auto;
    }
    .quote-icon i
    {
        display: none;
    }
    .sidebar
    {
        width: 90px;
        height: 80px;
        margin-right: 10px;
        z-index: 9999;
    }
    .sidebar img
    {
        width: 100%;
        margin: 0 auto;
    }
    .sidebar h2
    {
        display: none;
    }
    .flex-container
    {
        flex-direction: column;
    }
    .choose-us
    {
        flex-direction: column;
        
    }
   
    .bg-ground
    {
        display: none;
    }
    /* .cardBox-img h3, span
    {

           position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: .9rem;
            font-weight: 800;
            overflow: hidden;
            opacity: 0.9;
            background-color: #e76d00;
    } */
    .carousel-caption h3
    {
        font-size: 3rem;
    }
    .banner-text h1 {
        
        padding: 20px 0px;
        font-size: 1.4rem;
    }
 
}
@media only screen and (max-width: 1012px) {

    .sidebar
    {
      display: none;
    }
    .bg-ground
    {
        display: none;
    }
    .test-col-1
    {
        width: 340px;
       margin:  0 10px;
    }
    .test-col-2
    {
        width: 300px;
    }
    .cardBox-img
    {
        margin: 0 10px;
    }
    .contact-section
    {
        flex-direction: column;
    }
    .about-text h2
    {
        margin-top: 80px;
    }
    .about-img img
    {
        width: 80%;
    }
    .banner-text h1 {
        
        padding: 20px 0px;
        font-size: 1rem;
    }
    .feature-HMS
    {
        flex-direction: column;
        text-align: center;
    }
    .feature-img
    {
        width: 100%;
    }

    .feature-img img
    {
        width: 100%;
        padding: 20px 0;
        margin-bottom: 10px;
    }
    .cyber-questns
    {
        flex-direction: column-reverse;
        align-items: center;
        margin: auto;
    }
    .about-text h3
    {
        font-size: 18px;
    }
    .q-img img
    {
        width: 50%;

    }
}




/* About */
.banner {
    background-size: cover;
    background-position: center;
    height: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text h1 {
    background-color: #e76c00db;
    padding: 50px 50px ;
    color: #fff;
    font-size: 2.5rem;
}
.about-row
{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 20px;
    margin-bottom: 20px;
}
.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    min-height: 500px;

    
}
.about-text

{
    padding: 0 8px;
}


.block {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 30%;
    height: 30%;
   background-color: #e76d00;
    z-index: -1;
}
.choose-us {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    margin: 20px auto;
}

.choose-us-item {
    text-align: center;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 5px;
    max-width: 350px;
    
}
.choose-us-item img
{
    width: 50px;
    padding: 10px 0;
}
.choose-us-item h3{
    font-size: 1.4rem;
    font-weight: 600;
}
.choose-us-item p
{
    font-size: .9rem;
    line-height: 1.2;
    text-align: center  ;
}
/* contact */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #f0f0f039;
    margin-bottom: 30px;
    margin-top: 30px;
}
.fa-check
{
    font-weight: 600;
    font-size: 1.2rem;
    padding:  0 5px;
}

.contact-details {
    flex: 1;
    padding: 20px 20px;

    text-align: center;
    border-radius: 10px;
    margin: 5px;
}

.contact-detail {
    margin-bottom: 10px;
}

.contact-detail i {
    font-size: 24px;
    margin-right: 10px;
    color: #e76c00;
}

.contact-form {
    flex: 1;
    padding: 20px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #e76c00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}


.contact-form button:hover {
    background-color: #ffffff;
    color: #000;
    border: 1px solid #e76c00;
    outline: none;
}

/* cyber */
.about-text li
{
    list-style: none;
    line-height: 1.2;
    margin-left: 10px;
}
.about-text li i
{
    color: #e76c00;
}

.feature-HMS
{
    justify-content: center;
    align-items: center;
    display: flex;
}
.feature-img
{
    min-width: 30%;
}
.feature-img img
{
    width: 60%;
    padding: 0 10px;
}
.feature-text

{
    max-width: 50%;
}

#abt-services
{
    background-color: #0011b4;
    color: #fff;
    max-width: 300px;
   height: 280px;

    
}
#abt-services img
{
    width: 100px;
}

/* accordion */

#accordion .panel {
    border-radius: 0;
    border: 0;
    margin-top: 0px;
  }
  #accordion a {
    display: block;
    padding: 15px 15px;
    border-bottom: 1px solid #e76d00;
    text-decoration: none;
    color: #000;
  }
  #accordion .panel-heading a.collapsed:hover,
  #accordion .panel-heading a.collapsed:focus {
    background-color: #e9e9e938;
    color: rgb(0, 0, 0);
    transition: all 0.2s ease-in;
  }
  #accordion .panel-heading a.collapsed:hover::before,
  #accordion .panel-heading a.collapsed:focus::before {
    color: rgb(0, 0, 0);
  }
  #accordion .panel-heading {
    padding: 0;
    border-radius: 0px;
    font-size: 18px;
    /* text-align: center; */
  }
  #accordion .panel-heading a:not(.collapsed) {
    color: rgb(0, 0, 0);
    background-color: #e9e9e938;
    transition: all 0.2s ease-in;
  }
  
  /* Add Indicator fontawesome icon to the left */
  #accordion .panel-heading .accordion-toggle::before {
    font-family: 'FontAwesome';
    content: '\f00d';
    float: right;
    color: #e76d00;
    font-weight: lighter;
    transform: rotate(0deg);
    transition: all 0.2s ease-in;
  }
  #accordion .panel-heading .accordion-toggle.collapsed::before {
    color: #000000;
    transform: rotate(-135deg);
    transition: all 0.2s ease-in;
  }
  .panel-body p
  {
    padding: 0 10px;
  }
  
  