@font-face {
    font-family: hindi;
    src: url(../font/dev.ttf);
}
  
*
{
    margin: 0;
    padding: 0;
}

/* Heading Color */
.text-orange {
    color: #fc6f2b;
}
.bg-orange
{
    background-color: #fc6f2b;
    color: #ffffff;
}
.hov
{
    color: black;
}
.hov:hover
{
    color: #100efd;
}
.banner
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;  
}
.banner div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.banner div img
{
    width: 15%;
}
.banner div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .banner div h1{font-size: 1.3rem;}
    .banner div img {width: 50%;}
    .bg-orange
{
    background-color: #fc6f2b;
    color: #ffffff;
    font-size: 1.2rem;
}
}
/* --------------------------- header section ---------------------------------*/
header
{
background-color: #fc6f2b;    
}
.nav-link {
    position: relative;
    /* padding:10px 0; */
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
  }

  .nav-link:hover .nav-icon {
    opacity: 1;
    /* transform: translateY(-25px); */
  }

  .nav-icon {
    position: relative;
    margin: auto;
    width: auto;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-item.active .nav-icon
{
    opacity: 1;
}
  .nav-item
  {
    min-height: 80px;
    display: flex;
    flex-wrap: wrap;
    margin: auto 25px;
    justify-content:center;
    align-items: flex-end;

  }

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover and color changes */
}

.nav-link:hover {
    color: #100efd; /* Hover color */
}

/* Styles when scrolled */
header .scrolled {
    background-color: #ffffff;
   
}
.scrolled .nav-link{
    color: #000000;
}

.nav-link.scrolled-link {
    color: #000000;
}
.scrolled .nav-link:hover
{
    color: #100efd; /* Hover color */
}

/*.about img*/
/*{*/
/*    width: 70%;*/
/*}*/
/* -------------------------------------- slide section -------------------------- */
/* .slider
{
    width:100%;
    height: 750px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
} */

.slide
{
    width:100%;
    height: 750px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
    
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    display: flex;
    padding-left: 0;
    align-items: center;
    justify-content: center;
  }

  .carousel-indicators li {
    display: inline-block;
    width: 8px;
    height: 8px;
    align-self: center;
    margin: 0 5px;
    background-color: #fff; /* Light gray color */
    border-radius: 50%; /* Make it round for dots */
    transition: background-color 0.3s ease;
  }

  .carousel-indicators .active {
    background-color: #fff; /* Active color */
  }
.box {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.box:hover {
    transform: scale(1.05);
}

/* Icon Styling */
.box i {
    color: #fc6f2b;
}

/* Text Styling */
.box h2 {
    font-size: 1.2rem;
}

/* Responsive Grid for Mobile View */
@media (max-width: 768px) {
    .box {
        /*width: 48%; */
    }
}



@media (max-width: 768px) {
 
.slide
{
    width:100%;
    height: 500px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
    
}

}

.service
{
width: 100%;
background-color: #fc6f2b;
color: #fff;
}
.service h3{
    font-size: 1rem;
    text-align: center;
    width: 100%;
    color: #000000;
}

.s-card{
    box-shadow: 0px 0px 2px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.service .s-card {
    text-align: center; /* Center text and content */
    background-color: #f9f9f9; 
    padding: 20px; /* Add padding inside the card */
    margin-bottom: 30px; /* Ensure consistent spacing between rows */
    border-radius: 8px; /* Optional: Rounded corners for a clean look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for elevation */
    transition: transform 0.3s ease; /* Smooth hover effect */
  }
  
  .service .s-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
  }
  
  .service .img {
    margin-bottom: 15px; /* Add spacing between image and text */
  }
  
  .service .row {
    margin-bottom: 30px; /* Consistent spacing between rows */
  }
  
  .service h1 {
    margin-bottom: 50px; /* Ensure adequate space below the title */
  }
  
/* ---------------------------------------footer section-------------------------------*/
footer
{
    background-color: #100efc;
    color: white;
    padding: 50px;
}
footer .left
{
    display: flex;
    justify-content:center;
    align-items: center;
}
footer .left img
{
    width: 10%;
    margin-right: 50px;
}
footer .left p
{
text-align: justify;
font-size: 1.2rem;
}
footer .right ul
{
    display: flex;
    margin: auto;
    width: 100%;
    list-style: none;
    margin:50px 0;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    justify-content: space-around;
}
footer .right ul li a
{
    text-decoration: none;
    color: #fff;
}
footer .copy
{
    text-align: center;
    margin: 10px 0;
}
footer .social
{
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: end;
}
footer .social i
{
    margin-left: 20px;
    font-size: 1.5rem;
    color: #000000;
    transition: 0.3s ease-in;
}
footer .social i:hover
{
    /* margin-left: 10px; */
    font-size: 2.5rem;
    color: #fc6f2b;
    /* transform: scale(2); */
}
footer .social img{
    display: inline-block;
    margin: 10px 0px;
    width: 40px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {

    footer .right ul {
          display: grid;
          padding: 10px 0;
          grid-template-columns: 1fr; /* Two columns */
          gap: 10px; /* Space between items */
          list-style: none;
          text-align: left;
      }
  footer .left p
  {
      font-size: 1rem;
  }
      footer .right ul li {
          margin: 0; /* Remove margin for uniformity */
      }
  
      footer .right ul li a {
          font-size: 1rem; /* Adjust font size for better readability */
          text-decoration: none;
          color: #fff; /* Default link color */
          transition: color 0.3s ease;
      }

      footer .right ul li a:hover {
          color: #fc6f2b; /* Highlight color on hover */
      }
      footer .social
      {
          justify-content: center;
          margin-top: -30px;
      }
      
        footer .left img
  {
      width:30%;
  }

  }
  
/*------------------------------- refund --------------------------------*/
.refu
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.refu div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.refu div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

/* Background and Section Styling */
.refund-policy {
    background-color: #ffffff;
}

.refund-policy .content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .refund-policy h1,
    .refund-policy h2 {
        font-size: 1.5rem;
    }

    .refund-policy p {
        font-size: 0.9rem;
    }
}


/*------------------------------ contact us -------------------------------------*/

.contact
{
    background-color: #fc6f2b;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact .container
{
    display: flex;
    position: relative;
    height: 100%;
    flex-wrap: wrap;
    font-family: Poppins;
    /* background-image: url(../img/Character.png); */
    /* background-size: 20% 100%; */
    text-align: left;
    /* background-repeat: no-repeat; */
    /* background-position: 10%; */
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    margin: auto;
}
.contact .container h1
{
    font-size: 3rem;
    width: 100%;
    text-align: center;
}
.contact .container img
{
    width: 20%;
    /* align-self: baseline; */
}

.contact-form-details h4, .contact-form-details p
{
    text-align: left;
    font-size: 1rem;
}
.btn-orange {
    background-color: #fc6f2b;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #fc6f2b;
}

/* Section Styling */
.contact-form
{
    border-radius: 10%;
}
.contact-form-details {
    background-color: #ffffff;
}

.contact-form-details .details {
    padding: 20px;
}

.contact-form-details .icon {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-form-details .form-box {
    background-color: #ffffff;
}

.contact-form-details .form-control {
    border-color: #fc6f2b;
    border-width: 2px;
}

.contact-form-details .form-control:focus {
    box-shadow: 0 0 5px #fc6f2b;
    border-color: #fc6f2b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-details .details,
    .contact-form-details .form-box {
        text-align: center;    }
        .contact .container img
        {
            width:50%;
        }
}

.map {
    width: 100%; /* Full width */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; /* Adjust as necessary for height */
    margin: 0 auto; /* Center the map within the section */
}

.map iframe {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    border: none; /* Remove default iframe border */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map {
        height: 200px; /* Reduce height for smaller screens */
    }
}

.icon img
{
    width:100px;
}
/* .txt h4
{
    width: 100%;
}
.txt
{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
} */

/*------------------------------------- term & conditipon --------------------------------*/

 .term
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.term div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.term div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

/* Background and Section Styling */
.termc {
    background-color: #ffffff;
}

.termc .content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .termc h1,
    .termc h2 {
        font-size: 1.5rem;
    }

    .termc p {
        font-size: 0.9rem;
    }
}


/* --------------------------------------------------- privacy ------------------------------------------------ */
 .priv
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.priv div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;

}
.priv div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

/* Background and Section Styling */
.privacy-policy {
    background-color: #ffffff;
}

.privacy-policy .content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-policy h1,
    .privacy-policy h2 {
        font-size: 1.5rem;
    }

    .privacy-policy p {
        font-size: 0.9rem;
    }
}

/* --------------------------------------------------- career page ------------------------------------------*/
 .carer
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.carer div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;

}
.carer div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

/* Background and Section Styling */
.career {
    background-color: #ffffff;
}

.career .content {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .career h1,
    .career h2 {
        font-size: 1.5rem;
    }

    .career p {
        font-size: 0.9rem;
    }
}

/*------------------------------------------- service page ----------------------------------------------------------------*/
.serv
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.serv div
{
    display: flex;
    height: 100%;
    align-items: center;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;

}
.serv div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.service-card h3{
    color: #fc6f2b;
    font-weight: 900;
}
.service-card
{
    text-align: justify;
}
.service-card p{
font-size: 1.2rem;
}
/*------------------------------------------- about page ----------------------------------------------------------------*/
.abt
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.abt div
{
    display: flex;
    height: 100%;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.abt div h1
{
    font-family: sans-serif;
    width: 100%;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.aboutt i {
    font-size: 2em !important;
    margin-top: 10%;
    color: #fc6f2b;
    }
    
  .aboutt h2 {
    color: #fc6f2b;
    font-size: 1.2rem;
    }
   .aboutt .intro {
    height: auto;
    min-height: 100vh;
    text-align: center;
    background-color: #fc6f2b;
    }





    /*------------------------------------------- portfolio page ----------------------------------------------------------------*/
.port
{
    width:100%;
    height: 320px;
    align-items: center;
    display: flex;
    justify-content: space-around;
    background-color: #fc6f2b;
}
.port div
{
    display: flex;
    height: 100%;
    /* background-image: url(../img/Services.png); */
    background-size: 100% 100%;
    justify-content: center;
    
    align-items: center;
    flex-wrap: wrap;
}
.port div h1
{
    /* font-family: sans-serif; */
    width: 100%;
    color: white;
    font-family: poppins;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}



    /*------------------------------------------- blog page ----------------------------------------------------------------*/
    .blog
    {
        width:100%;
        height: 320px;
        align-items: center;
        display: flex;
        justify-content: space-around;
        background-color: #fc6f2b;
    }
    .blog div
    {
        display: flex;
        height: 100%;
        /* background-image: url(../img/Services.png); */
        background-size: 100% 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .blog div h1
    {
        width: 100%;
        color: white;
        font-family: poppins;
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
    }