/********** Template CSS **********/
:root {
    --primary: orange;
    --light: #F8F8F8;
    --dark: rgba(229, 171, 121, 0.812);
}

.ppp {
    word-wrap: break-word;
    font-size: 18px; /* Adjust for mobile-friendly size */
  }
  
  @media (max-width: 576px) {
    .ppp {
      font-size: 18px; /* Reduce font size for smaller screens */
    }
  }
  

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  @media (max-width: 576px) {
    .container {
      padding-left: 10px;
      padding-right: 10px;
    }
  }

 
  @media (max-width: 576px) { /* For small screens like mobile phones */
    .hero-content h1 {
      margin-top: 20px; /* Adjust the value as needed */
    }
  }


  .animated {
    animation-fill-mode: forwards; /* Prevent elements from reverting */
  }
  
  

@media (max-width: 768px) { /* For tablets and smaller screens */
    .hero-content h1 {
      font-size: 30px !important; /* Adjust as needed */
    }
  }

  @media (max-width: 576px) { /* For mobile phones */
    .hero-content h1 {
      font-size: 28px !important; /* Adjust as needed */
    }
  }

.application-form-wrapper {
    max-width: 1200px; /* Set a wider max width */
    margin: 0 auto; /* Center the container */
    border: 2px solid orange; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    background-color: #fff; /* White background */
    padding: 40px; /* Increase padding */
}


/* rgba(229, 171, 121, 0.812); */

.trusted-companies img:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}
 
.company-logo {
    max-width: 200px; /* Adjust as needed */
    height: auto;     /* Maintains aspect ratio */
    margin: 0 auto;   /* Centers the image within the column */
}

.krishna {
    max-width: 150px;
    height: auto;     /* Maintains aspect ratio */
    margin: 0 auto;
}

.btn-primary {
    background-color: #ffa500 !important;
    border-color: orange !important;
}

.navvv {
    color: #bfbaba !important;
}

.hero-section {
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center; /* Align vertically */
    background-color: #f7f7f7; /* Optional background color */
    margin-top: -50px; /* Adjust this value as needed to bring the section up */
    padding-top: 0; /* Optional: remove any additional padding */
    padding: 0 5rem; /* Horizontal padding */
    
}
.hero-section h1 {
    font-size: 4rem; /* Decrease the font size */

}

.hero-content {
    padding: 2rem 0;
}

.hero-content h1 {
    font-weight: 300;
    color: #FF5722; /* Vibrant text color */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.hero-image-wrapper {
    text-align: center;
    overflow: hidden;
    max-width: 100%; /* Allow the image to take up more space */
    height: auto;
}

.hero-image {
    width: 110%; /* Increase the image size */
    height: auto;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    border-radius: 15px;
    -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%, 20% 50%);
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%, 20% 50%);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px; /* Reduce padding for a more compact layout */
        text-align: center; /* Center-align content on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Reduce the heading size on mobile */
        margin-bottom: 15px; /* Add some spacing below the title */
    }

    .hero-content p {
        font-size: 1rem; /* Smaller text for better readability on mobile */
        margin-bottom: 20px; /* Space between text and button */
    }

    .hero-content .btn {
        font-size: 0.9rem;
        padding: 8px 18px; /* Adjust button size on mobile */
    }

    .hero-image-wrapper {
        text-align: center; /* Center the image */
        margin-top: 30px; /* Add space above the image */
    }

    .hero-image {
        margin-top: 30px;
        width: 120%;
        max-width: none; /* Limit image width on mobile */
        height: auto; /* Ensure proper aspect ratio */
        transform: translateX(-10%);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        margin-top: -100px;
        font-size: 2rem; /* Further reduce title size for very small screens */
    }

    .hero-content p {
        font-size: 0.9rem; /* Adjust paragraph font size for small screens */
    }
    
    .hero-content .btn {
        font-size: 0.85rem;
        padding: 6px 14px; /* Slightly smaller button on small screens */
    }

    .hero-image-wrapper {
        margin-top: 15px;
        text-align: center; /* Center the image on mobile */
        margin-top: 20px; /* Add space above the image */
    }

    .hero-image {
        width: 120%; /* Increase the image size to 120% on mobile */
        max-width: none; /* Remove max-width to allow the image to scale larger */
        height: auto; /* Keep the aspect ratio */
        transform: translateX(-10%); /* Center the larger image */
    }
}


/* .hero-section {
    position: relative;
    padding: 0;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

/* Optional: To add some margin around the image */
.hero-image-wrapper {
    padding: 20px;
    margin-top: -20px;
} */





h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
    background-color: white; /* Ensure a clean background */
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner Image ***/
#spinner img {
    max-width: 80%; /* Restrict image size for responsiveness */
    max-height: 80%;
    object-fit: contain;
    display: block;
    margin: auto; /* Center the image */
}

/*** Responsive Adjustments ***/
@media (max-width: 576px) { /* Mobile Devices */
    #spinner img {
        max-width: 60%; /* Smaller image for small screens */
        max-height: 60%;
    }
    .spinner-border {
        width: 4rem; /* Smaller spinner size */
        height: 4rem;
    }
}


/*** Button ***/

.btn.btn-md {
    padding: 8px 16px; /* Adjust the padding to make the button smaller */
    font-size: 16px; /* Reduce the font size */
}

.btn.btn-md.mt-3 {
    margin-top: 12px; /* Optional: you can adjust the top margin if needed */
}

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.toast {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    color: #fff;
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    font-size: 14px;
  }
  
  .toast-success {
    background: linear-gradient(90deg, #26cc68, #000000);
    /* border-left: 5px solid #57e937; */
  }
  
  .toast-error {
    background: linear-gradient(90deg, #d32f2f, #000000);
    /* border-left: 5px solid #dae02b; */
  }
  
  .toast-info {
    background: linear-gradient(90deg, #2196f3, #64b5f6);
    border-left: 5px solid #1e88e5;
  }
  
  .toast-warning {
    background: linear-gradient(90deg, #ff9800, #ffc107);
    border-left: 5px solid #ffb300;
  }
  
  .toast-success .toast-header {
    color: #000000;
  }
  
  .toast-error .toast-header {
    color: #000000;
  }
  
  .toast .toast-body {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* Add a slight bounce animation */
  .toast.show {
    animation: bounceIn 0.5s ease-in-out;
  }
  
  @keyframes bounceIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
      opacity: 1;
    }
    100% {
      transform: scale(1);
    }
  }
  

  /* #backToTop {
    transition: opacity 0.3s ease;
}

#backToTop.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent clicking while hidden */
*/


#spinner {
    margin-right: 10px;
    display: inline-block;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  