/********** Template CSS **********/
:root {
    --primary: #FF4917;
    --secondary: #FF4917;
    --light: #fafafa;
    --dark: #17224D;
    --success:#198754;
    --body-font-family:             'Open Sans', sans-serif;
    --title-font-family:            'Montserrat', sans-serif;
    
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

}
body {
    background-color: var(--white-color);
    font-family:  'Poppins', sans-serif; 
  }
.fw-medium {
    font-weight: 600 !important;
}

/*Back To Top*/

.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 48         Zpx;
  height: 48px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  line-height: 49px;
  z-index: 99;
  font-size: 16px;
  transition: 0.4s;
  cursor: pointer;
  display: none;
  animation: backto-top-bounce 4s infinite ease-in-out;
}
.back-to-top:hover {
  box-shadow: 0px 3px 7px 0px rgba(254, 242, 46, 0.35);
}
@keyframes backto-top-bounce {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}

#preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--dark);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000000; }

#original-load {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #f1f1f1;
  -webkit-animation: original 2400ms linear infinite;
  animation: original 2400ms linear infinite;
  z-index: 999; }
  #original-load:before {
    content: "";
    position: absolute;
    top: 7.5px;
    left: 7.5px;
    right: 7.5px;
    bottom: 7.5px;
    border-radius: 50%;
    border: 3px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #f1f1f1;
    -webkit-animation: original 2700ms linear infinite;
    animation: original 2700ms linear infinite; }
  #original-load:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 3px;
    border-style: solid;
    border-color: transparent;
    border-top-color: #f1f1f1;
    -webkit-animation: original 1800ms linear infinite;
    animation: original 1800ms linear infinite; }

@-webkit-keyframes original {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes original {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.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;
}

/*--------------------------------------
 Sets the actionable area for the gaadiexp
 including a label for usability
--------------------------------------*/
.content-box {margin-top:20px;}
.gaadiexp,
.gaadiexp:after,
.gaadiexp *,
.gaadiexp *:before,
.gaadiexp *:after,
.header-nav *,
.header-nav *:before,
.header-nav *:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.gaadiexp {
    cursor: pointer;
    height: 60px;
    margin-bottom: 0;
    width: 70px;
    z-index: 9001;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    background: #ffffff;
}

.gaadiexp:after {
    bottom: 7px;
    color: #000000;
    content: 'Menu';
    font-size: 13px;
    font-weight: 300;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

/*--------------------------------------
 Creates the look of the gaadiexp icon
 using the inner span and pseudo-elements
--------------------------------------*/

.gaadiexp span,
.gaadiexp span:before,
.gaadiexp span:after {
    background: #000000;
    border-radius: 0.2em;
    height: 4px;
    left: 10px;
    position: absolute;
    top: 22px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 40px;
}


/* Reset the left and create the pseudo-element */

.gaadiexp span:before,
.gaadiexp span:after {
    content: '';
    left: 0;
}


/* Top bar position */

.gaadiexp span:before {
    top: -8px;
}


/* Bottom bar position */

.gaadiexp span:after {
    top: 8px;
}


/* Get rid of more on action (IE9 or higher) */

.gaadiexp-check:checked + .gaadiexp:after {
    content: '';
}


/* Get rid of the middle bar on action (IE9 or higher) */

.gaadiexp-check:checked + .gaadiexp span {
    height: 0;
    width: 0;
}


/* Moves the top and bottom bars to the middle on action (IE9 or higher) */

.gaadiexp-check:checked + .gaadiexp span:before,
.gaadiexp-check:checked + .gaadiexp span:after {
    top: 6px;
}


/* Rotates the top bar on action with full browser support (IE9 or higher) */

.gaadiexp-check:checked + .gaadiexp span:before {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}


/* Rotates the bottom bar on action with full browser support (IE9 or higher) */

.gaadiexp-check:checked + .gaadiexp span:after {
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(-225deg);
}

#mobile-nav:focus + .gaadiexp,
.gaadiexp:focus,
.gaadiexp:hover {
    background: rgba(0, 136, 204, 0.9);
}

.gaadiexp-check:checked + .gaadiexp {
    width: 260px;
}

.gaadiexp-check:checked + .gaadiexp:after {
    bottom: 18px;
    content: 'Close Menu';
    font-size: 20px;
    padding-left: 30px;
}

#mobile-nav {
    left: -9999px;
    position: fixed;
    top: 0;
}
.header-nav ul li a:active,
.header-nav ul li a:focus,
.header-nav ul li a:hover,
#mobile-nav:focus + .gaadiexp,
.gaadiexp:focus,
.gaadiexp:hover {
    background: rgb(255, 255, 255);
    outline: none;
    border-bottom: 1px solid #000000;
}

.fixed-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    height: 70px;
    border-bottom-right-radius:10px;
    position: fixed;
    width: 100%;
    z-index: 9000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.menu {
    display: flex;
    align-items: center;
}



/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--secondary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--dark);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title3 {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title3  {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title3 :before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title3 ::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title3 p {
  margin-bottom: 0;
}

/*** Section Title ***/
.section-title2 {
    position: relative;
    display: inline-block;
}

.section-title2::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--secondary);
}

.section-title2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--dark);
}

.section-title2.text-start::before,
.section-title2.text-end::after {
    display: none;
}
.twentytwenty-wrapper {
    height: 100%;
}

.search-bar {
    margin-right: 10px; /* Adjust margin as needed */
}

/* Add the following styles to make the search box and button inline */
.search-bar form {
    display: flex;
}

.search-bar .input-group {
    display: flex;
}

.search-bar input {
    border-radius: 20px;
}

.header-nav {
    float: inherit;
    height: 60px;
    position: relative;
    width: 100%;
    
}

.header-nav ul {
    background: #fff;
    
   /* height: calc(100vh - 60px);*/
   border-bottom-right-radius:10px;
    list-style: none;
    margin: 0;
    overflow-y: auto;
    padding: 10px 0 0 0;
    position: absolute;
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
    width: 260px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.075);
    top: 100%;
    z-index: 1;
}

.gaadiexp-check:checked ~ .header-nav ul {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.header-nav ul li {
    float: left;
    position: relative;
    width: 100%;
}

.header-nav ul li a {
    color: rgba(0, 0, 0, 0.79);
    display: block;
    float: left;
   /*font-size: 14px;*/
    font-weight: 400;
    letter-spacing: 0.75px;
    line-height: 24px;
    margin-left: 0;
    overflow: hidden;
    padding: 12px 60px 12px 12px;
    position: relative;
    text-decoration: none;
    width: 100%;
}

  .button {
    display: inline-block;
    padding: 8px 16px;
    margin: 2px;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
  }
  .menu-buttons a {
    color: #000000; /* Professional color, you can change this */
    border-bottom: 3px solid transparent; /* Bottom border, initially transparent */
    transition: border-bottom 0.3s; /* Smooth transition for the border */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-family: var(--body-font-family);
    font-size: 20px;
    white-space: nowrap;
    transition: 0.3s;
}

.menu-buttons a:hover {
    border-bottom: 3px solid #db2f12; /* Change border color on hover */
}
.menu-buttons  .active {
  border-bottom: 3px solid #db2f12; /* Change border color on hover */
  color: #e6573f;
}
a:hover {
    color: #e6573f;
    text-decoration: none;
  }
/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--secondary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--secondary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

/* Ensuring consistent height for images */
.header-carousel .owl-carousel-item {
    position: relative;
    height: 500px; /* Fixed height for carousel items */
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    object-position: center;
    display: block; /* Ensures no inline spacing issues */
    border-radius: 5px; /* Optional: adds a border radius if desired */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 400px; /* Adjust height for smaller screens */
    }
    
    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 20px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

/* Navigation controls */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 3px solid var(--secondary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--secondary);
}

/* Page header background */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
      position: relative;
      margin-top: -75px;
      z-index: 1;
  }
}
.fact-card{
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.fact-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .icon-containers {
      transition: all 0.3s ease;
  }

  .fact-card:hover .icon-containers {
      transform: rotate(360deg);
  }
  

/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.equal-height {
    display: flex;
    flex-direction: column;
  }
.about-image, .team-image {
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 15px; /* Rounded edges for a soft look */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.10); /* Raised effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
    background-color: #f5f5f5; /* Subtle background to blend edges */
    overflow: hidden; /* Prevent overflow if content goes beyond border */
  }
  .team-image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
  /* Hover effect to make it more interactive */
  .about-image:hover, .team-image:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 8px 8px rgba(0, 0, 0, 0.15); /* Elevated shadow on hover */
  }
  
.team-thumb {
 background: var(--white-color);
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 85%;
    height: 80px;
    padding: 2px 3px 0px 9px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    float: left;
}
/* Social Media Icons */
    .team-social-icons {
        position: absolute;
        top: 40%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 10;
        
    }

    .team-social-icons .btn {
        border-radius: 50%;
        text-align: center;
       /* line-height: 35px;
        width: 40px;
        height: 40px;*/
    }


.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 40px;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: rgba(0, 0, 0, 0.678);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 2.0rem;
  height: 2.0rem;
}

/*** Service ***/
.service-item-top img {

    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/booking.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--secondary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.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);
}

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 10px;
    right: 0;
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 40px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    /*height: 90px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}

/*** Project Portfolio ***/

#portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  font-size: 15px;
  font-weight: bolder;
  line-height: 1;
  color: var(--light);
  margin: 0 4px 8px 4px;
  transition: all ease-in-out 0.3s;
  border-radius: 11px;
  background: var(--dark);
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  background: var(--secondary);
    color: #fff;
}
.portfolio-img {
    position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.10); /* Raised effect */
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.10); /* Raised effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
    background-color: #f5f5f5; /* Subtle background to blend edges */
    overflow: hidden; /* Prevent overflow if content goes beyond border */
}


/* Buttons appearing in the center */
.portfolio-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:  rgba(84, 84, 84, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

/* Corner Borders on Hover */
.portfolio-img::before,
.portfolio-img::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 3px solid var(--light); /* White color */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Top Right Corner */
.portfolio-img::before {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

/* Bottom Left Corner */
.portfolio-img::after {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.portfolio-item:hover .portfolio-img::before,
.portfolio-item:hover .portfolio-img::after {
  opacity: 1;
}

/* Rounded Rectangle on Right */
.portfolio-info {
  position: absolute;
  top: 85%;
  right: 0;
  transform: translateY(-50%);
  /*background: rgba(0, 0, 0, 0.7);*/
  color: var(--dark);
  padding: 5px;
  border-radius: 10px 0 0 10px;
  width: 95%;

}

.portfolio-info h5 {
  margin: 0;
  font-size: 16px;
  text-align: right;
  padding-bottom: 10px;
}

.portfolio-info a {
  background: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.portfolio-info a:hover {
  background: var(--dark);
}
.portfolio-icons {
  top: 0;
  z-index: 10;
}
/*** project End ***/
  
.testimonial-carousel {
  background: var(--bs-white);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: calc(100% + 46px);
  height: 46px;
  top: calc(50% - 23px);
  left: -23px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 2px;
  font-size: 22px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

.testimonial-carousel .owl-item img {
  width: 120px;
  height: 120px;
}

/*BLOG*/
.blog{padding:6px 0 10px}@media(max-width:767px){.blog{padding-bottom:5px}}@media(max-width:575px){.blog{padding-top:30px}
}.blog-section-title{margin-bottom:45px}@media(max-width:991px){.blog-section-title{text-align:center}
}@media(max-width:575px){.blog-section-title{margin-bottom:30px}}@media(max-width:575px){.blog-section-title h2{font-size:35px}
}.blog-post{display:flex;align-items:center;margin-bottom:10px;   border-radius: 10px;
    transform: translateY(-5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;}@media(max-width:575px){.blog-post{display:block;   border-radius: 10px;
    transform: translateY(-5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px; }
}.blog-post-thumb{width:40%;border-radius:5px;overflow:hidden}@media(max-width:575px){.blog-post-thumb{width:100%;margin-bottom:30px}
}.blog-post-thumb img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .5s cubic-bezier(0.645,0.045,0.355,1);
    border-radius: 10px;
    transform: perspective(600px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);cubic-bezier(0.645,0.045,0.355,1)}
.blog-post-content{width:55%;margin-left:auto}@media(max-width:575px){.blog-post-content{width:100%;text-align:center}
}@media(max-width:767px){.blog-post-content p{display:none}}@media(max-width:575px){.blog-post-content p{display:block}
}.blog-post-title a{font-size:26px;font-weight:700;color:#141414;text-decoration:none;margin-bottom:8px;display:block;transition:all .3s ease-in-out;font-family:"Jost",sans-serif}
@media(max-width:1199px){.blog-post-title a{font-size:22px}}.blog-post-tag a{background-color:var(--secondary);padding:4px 20px;display:inline-block;border-radius:50px;text-decoration:none;font-size:12px;color:#fff;font-weight:600;margin-bottom:20px}
.blog-post-meta ul{padding:0;margin:0 0 18px;display:flex;list-style:none}@media(max-width:575px){.blog-post-meta ul{justify-content:center}
}.blog-post-meta ul li{font-size:13px}.blog-post-meta ul li:not(:last-child){margin-right:10px}
.blog-post-meta ul li a{color:#000}.blog-post-action{color:var(--secondary);font-size:14px;font-weight:500;text-transform:capitalize;text-decoration:none}
.blog-post-action i{padding-left:10px;display:inline-block;line-height:20px;transition:.3s cubic-bezier(0.645,0.045,0.355,1)}
.blog-post-action:hover{text-decoration:none;color:#fcfafa}.blog-post-action:hover i{padding-left:15px}
@media(max-width:575px){.blog-post-pagination{padding-bottom:30px}}.blog-post-pagination .nav-bg ul.pagination{padding:0;margin:50px 0 0}
@media(max-width:767px){.blog-post-pagination .nav-bg ul.pagination{justify-content:center}
}.blog-post-pagination .nav-bg ul.pagination li.page-item a.page-link{width:50px;height:50px;line-height:50px;padding:0;text-align:center;border-radius:50%;border:1px solid #fff;color:gray;margin-right:10px;background:0;transition:all .3s ease-in-out;display:block}
.blog-post-pagination .nav-bg ul.pagination li.page-item a.page-link:hover{border:1px solid #e0dede}
.blog-post-pagination .nav-bg ul.pagination li.page-item a.active{border:1px solid #e0dede}
.blog-post-widget{position:relative}.blog-post-widget .latest-widget-title h2{font-size:28px;margin-bottom:10px;font-weight:700;text-transform:uppercase}
@media(max-width:991px){.blog-post-widget .latest-widget-title h2{text-align:left}
}.blog-post-widget .latest-widget{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;border-radius: 10px;
    transform: translateY(-5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;}
.blog-post-widget .latest-widget-thum{position:relative;width:30%}.blog-post-widget .latest-widget-thum img{max-width:100%;transition:all .3s ease-in-out}
@media(max-width:991px){.blog-post-widget .latest-widget-thum img{width:100%}}.blog-post-widget .latest-widget-thum .icon a{position:absolute;background:var(--secondary);border-radius:50px;width:30px;height:30px;display:flex;align-items:center;justify-content:center;top:-15px;left:-15px}
@media(max-width:991px){.blog-post-widget .latest-widget-thum .icon a{left:-10px;top:-10px}
}@media(max-width:991px){.blog-post-widget .latest-widget-thum .icon a img{width:50%}
}.blog-post-widget .latest-widget-content{width:65%}.blog-post-widget .latest-widget-content .content-title a{font-size:17px;font-weight:700;color:#141414;margin-bottom:10px;display:block;text-decoration:none}
@media(max-width:1199px){.blog-post-widget .latest-widget-content .content-title a{font-size:16px}
}.blog-post-widget .latest-widget-content .content-meta ul{padding:0;margin:0;display:flex;list-style:none}
.blog-post-widget .latest-widget-content .content-meta ul li{font-size:14px}.blog-post-widget .latest-widget-content .content-meta ul li a{color:#000}
.blog-post-widget .latest-widget:hover .latest-widget-thum img{transform:scale(0.97)}
.blog-post:hover .blog-post-thumb img{transform:scale(0.97)}.blog-single{padding:5px 0 5px}
@media(max-width:991px){.blog-single{padding-top:50px}}@media(max-width:575px){.blog-single{padding-top:0}
}@media(max-width:400px){.blog-single{padding-bottom:30px}}.blog-single .share-now{position:sticky;top:4%}
@media(max-width:991px){.blog-single .share-now{position:inherit;display:flex;align-items:center;justify-content:space-around}
}.blog-single .share-now a.scrol{position:relative;color:#000;font-size:14px;text-decoration:none;text-transform:uppercase;margin-bottom:90px;display:inline-block}
@media(max-width:991px){.blog-single .share-now a.scrol{margin-bottom:0}}@media(max-width:767px){.blog-single .share-now a.scrol{margin-left:-20px}
}@media(max-width:575px){.blog-single .share-now a.scrol{margin-left:0}}@media(max-width:400px){.blog-single .share-now a.scrol{margin-left:-5px;margin-bottom:5px}
}.blog-single .share-now a.scrol::before{position:absolute;content:"";width:70px;height:1px;background:#000;transform:rotate(90deg);bottom:-40px;left:-10px}
@media(max-width:991px){.blog-single .share-now a.scrol::before{transform:inherit;bottom:11px;left:52px}
}@media(max-width:767px){.blog-single .share-now a.scrol::before{width:40px}}@media(max-width:575px){.blog-single .share-now a.scrol::before{display:none}
}@media(max-width:991px){.blog-single .share-now .sociel-icon{margin-left:-100px}
}@media(max-width:767px){.blog-single .share-now .sociel-icon{margin-left:0}}.blog-single .share-now .sociel-icon ul{padding:0;margin:0}
.blog-single .share-now .sociel-icon ul li{list-style:none;display:block}@media(max-width:991px){.blog-single .share-now .sociel-icon ul li{display:inline-block;margin-right:15px}
}@media(max-width:991px){.blog-single .share-now .sociel-icon ul li{margin-right:5px}
}.blog-single .share-now .sociel-icon ul li a{font-size:20px;width:50px;height:50px;display:flex;align-items:center;justify-content:center;border:1px solid #e0dede;border-radius:50px;text-decoration:none;color:gray;margin-bottom:10px;transition:all .3s ease-in-out}
@media(max-width:400px){.blog-single .share-now .sociel-icon ul li a{font-size:16px;width:40px;height:40px}
}.blog-single .share-now .sociel-icon ul li a:hover{background-color:#000;color:#fff}
.blog-single .single-blog{position:relative;padding:0 80px 60px}@media(max-width:767px){.blog-single .single-blog{padding:0 0 60px}
}.blog-single .single-blog .tag{background-color:#000;padding:5px 20px;display:inline-block;border-radius:50px;text-decoration:none;font-size:12px;color:#fff;font-weight:600;margin-bottom:20px}
.blog-single .single-blog .title{font-size:40px;font-weight:700;color:#141414;text-decoration:none;display:block;line-height:60px}
@media(max-width:991px){.blog-single .single-blog .title{font-size:35px}}@media(max-width:575px){.blog-single .single-blog .title{font-size:30px;line-height:45px}
}@media(max-width:400px){.blog-single .single-blog .title{font-size:24px;line-height:35px}
}.blog-single .single-blog .meta{margin:0;padding:0 0 60px 0;display:flex;list-style:none}
@media(max-width:575px){.blog-single .single-blog .meta{padding-bottom:30px}}.blog-single .single-blog .meta li{font-size:14px}
.blog-single .single-blog .meta li:not(:last-child){margin-right:10px}.blog-single .single-blog .meta li a{color:#000}
.blog-single .single-blog img{box-shadow:10px 25px 40px 0 rgba(18,21,26,0.07);margin:0 -60px 50px}
@media(max-width:1199px){.blog-single .single-blog img{margin:0 0 40px 0;width:100%}
}@media(max-width:575px){.blog-single .single-blog img{margin-bottom:30px}}.blog-single .single-blog p{font-size:14px;font-weight:500}
.blog-single .single-blog h3{font-size:26px;font-weight:600;margin-bottom:25px}@media(max-width:575px){.blog-single .single-blog h3{margin-bottom:15px}
}@media(max-width:575px){.blog-single .single-blog h3{font-size:20px}}.blog-single .single-blog blockquote{background-color:#f6f6f6;padding:45px 100px 40px 50px;margin-bottom:70px;position:relative}
@media(max-width:991px){.blog-single .single-blog blockquote{padding:45px;margin-bottom:50px}
}@media(max-width:767px){.blog-single .single-blog blockquote{margin-bottom:30px}
}@media(max-width:575px){.blog-single .single-blog blockquote{padding:20px 10px 20px 20px;margin-bottom:15px}
}.blog-single .single-blog blockquote::before{content:"";position:absolute;width:50px;height:3px;background-color:#000;top:50%;left:-3%;transform:translate(0,-50%) rotate(90deg)}
@media(max-width:575px){.blog-single .single-blog blockquote::before{display:none}
}.blog-single .single-blog blockquote p{color:#141414;font-size:20px;font-weight:500;margin-bottom:0;padding:0;letter-spacing:1px}
@media(max-width:575px){.blog-single .single-blog blockquote p{font-size:16px}}.blog-single .single-blog-banner{display:flex;justify-content:center;margin-bottom:50px;overflow:hidden}
@media(max-width:767px){.blog-single .single-blog-banner{display:block;margin-bottom:30px}
}@media(max-width:575px){.blog-single .single-blog-banner{margin-bottom:15px}}.blog-single .single-blog-banner .banner:nth-child(1){padding-right:50px}
@media(max-width:767px){.blog-single .single-blog-banner .banner:nth-child(1){padding-bottom:20px;padding-right:0}
}.blog-single .single-blog-banner .banner img{max-width:100%;margin:0;box-shadow:none}
.blog-single-presentation{margin-bottom:50px;display:flex;border-top:1px solid #e0dede;border-bottom:1px solid #e0dede}
.blog-single-presentation ul{padding:0;margin:0;display:flex}.blog-single-presentation ul li{list-style:none;padding:40px 0 40px 40px}
@media(max-width:767px){.blog-single-presentation ul li{padding:20px 20px}}.blog-single-presentation ul li:nth-child(1){text-align:right;border-right:1px solid #e0dede;padding:40px 40px 40px 0}
@media(max-width:767px){.blog-single-presentation ul li:nth-child(1){padding:20px 20px}
}.blog-single-presentation ul li .tag{padding:10px 30px;background-color:gray;display:inline-block;border-radius:50px;text-decoration:none;font-size:12px;color:#fff;font-weight:600;margin-bottom:20px;transition:all .3s ease-in-out;text-transform:uppercase}
.blog-single-presentation ul li .title{font-size:20px;font-weight:700;color:#141414;text-decoration:none;margin-bottom:10px;display:block}
@media(max-width:991px){.blog-single-presentation ul li .title{font-size:18px}}@media(max-width:767px){.blog-single-presentation ul li .title{font-size:16px}
}.blog-single-presentation ul li:hover .tag{background-color:#000}.instagram{overflow:hidden;position:relative;display:block}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #545454;
    position: relative;
  }
  
   .sidebar-item {
    margin-bottom: 30px;
  }
  
   .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
    border-radius: 10px;
  }
  
 .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
  }
  
 .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--secondary);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
  }
  
  .search-form form button i {
    line-height: 0;
  }
  
   .search-form form button:hover {
    background: var(--bs-primary);
  }
  .categories ul {
    list-style: none;
    padding: 0;
    display: flex; /* Make the list items display in a row */
    flex-wrap: wrap; /* Allow items to wrap to the next line if needed */
    gap: 15px; /* Add spacing between items */
    justify-content: flex-start; /* Align items to the left */
    align-items: center; /* Center items vertically */
    margin: 0;
}

.categories ul li {
    display: flex;
    
}

.categories ul li + li {
    padding-top: 0; /* Remove vertical padding since items are horizontal */
}

.blog .sidebar .categories ul a {
    color: #545454;
    transition: color 0.3s ease;
    text-decoration: none; /* Remove underline for cleaner look */
    display: flex;
    align-items: center;
}

.categories ul a:hover {
    color: var(--bs-primary);
}

.categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}
/* Blog Section Styles */
.blog-section-title2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .blog-section-title2 h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .blog-section-title2 p {
    color: #666;
    font-size: 1rem;
    margin-top: -10px;
  }
  
  /* Blog Post Single */
  .blog-post-single {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-post-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Blog Post Image */
  .blog-post-thumb2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
  }
  
  /* Blog Post Content */
  .blog-post-content2 {
    padding: 20px;
  }
  
  .blog-post-tag2 a {
    background-color: var(--secondary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .blog-post-tag2 a:hover {
    background-color: #0056b3;
  }
  
  .blog-post-title2 a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    transition: color 0.3s ease;
  }
  
  .blog-post-title2 a:hover {
    color: #007bff;
  }
  
  /* Blog Post Meta */
  .blog-post-meta2 ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
  }
  
  .blog-post-meta2 ul li {
    display: flex;
    align-items: center;
  }
  
  .blog-post-meta2 ul li a {
    margin-left: 5px;
    color: #007bff;
    text-decoration: none;
  }
  
  .blog-post-meta2 ul li a:hover {
    text-decoration: underline;
  }
  
  /* Blog Description */
  .blog-post-content2 div {
    margin-top: 15px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Read More Button */
  .blog-post-action2 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #333;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .blog-post-action2:hover {
    background-color: #007bff;
    color: #fff;
  }
  
/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

 /* Beautiful Container with rounded corners and raised effect */
 .timeline-container {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 900px;
  margin: 50px auto;
}

/* Timeline List */
.timeline {
  position: relative;
  margin: 0;
  padding: 0px 0;
  list-style: none;
  border-left: 5px solid #dc3545; /* Vertical line */
}

.timeline > li {
  position: relative;
  padding: 15px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.timeline > li .timeline-content {
  margin-left: 15px;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  width: 100%;
}

.timeline > li .timeline-circle {
  position: absolute;
  /*top: 50%;*/
  left: -30px;
  width: 60px; /* Larger circles */
  height: 60px; /* Larger circles */
  background: #0d6efd;
  color: white;
  font-size: 24px; /* Adjusted font size for larger circles */
  text-align: center;
  line-height: 60px;  /* Center text vertically */
  border-radius: 50%;
  z-index: 2;
  border: 4px solid #fff;
}

/* Content Styling */
.timeline > li .timeline-content h5 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #fff;
}

.timeline > li .timeline-content p {
  margin: 10px;
  color: #333;
}

.timeline > li .timeline-content small {
  display: block;
  margin-top: 10px;
  color: #fff;
font-weight: bolder;
}

/* Custom background colors for steps */
.timeline li:nth-child(1) .timeline-content {
  background-color: #007bff;
}

.timeline li:nth-child(2) .timeline-content {
  background-color: #28a745;
}

.timeline li:nth-child(3) .timeline-content {
  background-color: #ffc107;
}

.timeline li:nth-child(4) .timeline-content {
  background-color: #dc3545;
}

.timeline li:nth-child(5) .timeline-content {
  background-color: #17a2b8;
}

.timeline li:nth-child(6) .timeline-content {
  background-color: #6f42c1;
}

.timeline li:nth-child(7) .timeline-content {
  background-color: #e83e8c;
}
.timeline li:nth-child(8) .timeline-content {
  background-color: #ff6610;
}
.timeline li:nth-child(1) .timeline-circle {
  background-color: #007bff;
}

.timeline li:nth-child(2) .timeline-circle {
  background-color: #28a745;
}

.timeline li:nth-child(3) .timeline-circle {
  background-color: #ffc107;
}

.timeline li:nth-child(4) .timeline-circle {
  background-color: #dc3545;
}

.timeline li:nth-child(5) .timeline-circle {
  background-color: #17a2b8;
}

.timeline li:nth-child(6) .timeline-circle {
  background-color: #6f42c1;
}

.timeline li:nth-child(7) .timeline-circle {
  background-color: #e83e8c;
}
.timeline li:nth-child(8) .timeline-circle {
  background-color: #ff6610;
}

/* Completed steps */
.timeline > li.completed .timeline-circle {
  background-color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vertical-line {
position: absolute;
left: 55px; /* Adjust this value based on the circle's size and position */
width: 10px;
height: 1000px; /* Extend the line across the container */
background-color: #dc3545;
z-index: 0; /* Ensure the line is behind the circles */
}
  .timeline-container {
    padding: 20px;
    margin:10px;
  }
  .timeline > li .timeline-content h5 {
margin: 0 0 10px;
font-size: large;
font-weight: bolder;
color: #fff;
margin-left: 60px;
}
  .timeline {
    padding-left: 0;
    border-left: none;
  }

  .timeline > li {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline > li .timeline-circle {
    left: -3px;
    top:0;

    margin-bottom: 15px;
  }

  .timeline > li .timeline-content {
    margin-left: 0;
  }
}

/* Background Image for the Card */
.service-card {
  width: 100%;
  /*max-width: 800px;*/
  border-radius: 15px;
  background-image: url('../img/graphicdesign.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--successs);
  padding: 5px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Button Styles */
.btn-service {
  border-radius: 30px;
  padding: 5px 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* Button Hover Effect */
.btn-service:hover {
  background-color: var(--light);
  color: var(--dark);
  transform: translateY(-5px);
}

/* Responsive Flexbox for Buttons */
.btn-service a {
  max-width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-service {
     /* width: 100%; */
      justify-content: center;
  }
}

/*** Events Section Styling ***/

.event {
 /* background-color: var(--btn-font-size);*/
}

.event-carousel.owl-carousel {
  position: relative;
}

.event-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  height: auto; /* Default for small devices */
}

@media (min-width: 992px) {
  .event-item {
      height: 410px; /* Apply fixed height for large devices */
  }
}

.event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event .event-content {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.event .event-content:hover {
  background-color: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.event .event-content h6 {
  font-weight: bold;
  background-color: var(--dark); 
  border-radius: 15px; 
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
padding: 5px 10px; 
border: 2px solid var(--primary);
}

.event .event-content p {
  color: #6c757d;
}

.event .event-carousel .owl-nav .owl-prev,
.event .event-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event .event-carousel .owl-nav .owl-prev {
  left: -3px;
}

.event .event-carousel .owl-nav .owl-next {
  right: -3px;
}

.event .event-carousel .owl-nav .owl-prev:hover,
.event .event-carousel .owl-nav .owl-next:hover {
  background-color: var(--dark);
  transform: scale(1.1);
}

.event .event-carousel .owl-dots .owl-dot {
  background-color: #ced4da;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}

.event .event-carousel .owl-dots .owl-dot.active {
  background-color: var(--dark);
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
  .event .event-carousel .owl-nav .owl-prev,
  .event .event-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
  }
}
.webdev {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--secondary);
  height: auto; /* Default for small devices */
}

@media (min-width: 992px) {
  .webdev {
      height: 450px; /* Apply fixed height for large devices */
  }
}
.modal-header {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
      transform: translateY(-50%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.modal-body {
  text-align: center;
 /* padding: 1px;*/
}

.modal-body input {
  margin-top: 15px;
  border-radius: 5px;
}

.btn-subscribe {
  background-color: var(--secondary);
  color: white;
  border-radius: 5px;
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  width: 100%;
  font-size: 16px;
}

.btn-subscribe:hover {
  background-color: var(--primary
  );
}
     /* Floating Social Media Bar */
     .floating-social-bar {
      position: fixed;
      bottom: 90px;
      right: 10px;
      z-index: 1000;
  }

  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      text-decoration: none;
      font-size: 22px;
      color: #000000;
      border-radius: 50%; /* Make circular icons */
      border: 2px solid #ddd;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }

  .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  /* Specific Styles */
  .social-like {
      color: #fd0303;
  }

  .social-like.liked {
      background-color: #fff;
      color: #ff0703; /* Filled heart color */
  }

  .social-views {
      color: var(--primary);
  }

  .social-share {
      color: #28a745;
  }

  /* Titles for Icons */
  .social-title {
      font-size: 17px;
      font-weight: bolder;
      color: var(--secondary);
      text-align: center;
      margin-top: 1px;
  }
   /* Modal Customization */
   #bookingModal .modal-content {
    border-radius: 15px;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  }

  #bookingModal .modal-title {
    font-size: 1.8rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dark);
  }

  #bookingModal .form-control {
    border: none;
    border-bottom: 2px solid var(--secondary);
    border-radius: 0;
    padding-left: 2.5rem;
    background: none;
    color: #333;
  }

  #bookingModal .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid #28a745;
  }

  .icon-container {
    position: relative;
  }

  .icon-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #007bff;
  }

  .textarea-container textarea {
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 0.8rem;
  }

  .btn-primary {
    background-color: var(--secondary);
    border-color: #007bff;
  }

  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }

  .btn-success {
    background-color: #28a745;
    border-color: #28a745;
  }

  .btn-success:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
  }

  /* Discount Card Styles */
  .discount-card {
   
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  border:  5px #198754;
  /* color: #fff; */
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  }

  .discount-card h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .discount-card p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .discount-card .countdown {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  
  
#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}

#skill .tab-content hr {
    width: 30px;
}

.video-item {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: var(--light);
}
.video-item img{
  height: 300px;
  object-fit: cover;
  overflow: hidden;
}
.video-item .card-footer{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.typed-cursor {
  font-size: 30px;
  color: var(--dark);
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--secondary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid var(--secondary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}
.offers-container {
  position: relative;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.offer-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background-color: #040404a6;
  border-radius: 10px;
}
.offer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.offer-link:hover {
  animation: shake 0.3s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
}
.video-icon:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
  /* Styling for Tab Buttons */
#about-tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2px;
  border-radius: 50px;
}

#about-tabs .nav-item {
  flex-grow: 1; /* Ensures equal width distribution */
  text-align: center;
}

#about-tabs .nav-link {
  width: 100%; /* Makes each button take full available space */
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 18px;
  color: #333;
  transition: all 0.3s ease-in-out;
}

#about-tabs .nav-link.active {
  background-color: #007bff;
  color: white;
  box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

#about-tabs .nav-link:hover {
  background-color: #0056b3;
  color: white;
}

/* Tab Content Styling */
.tab-content {
   /* border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #fff;*/
}

/* Smooth Tab Transition */
.tab-pane {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.tab-pane.show {
    opacity: 1;
}

/*** Skills ***/
#skill .progress {
  height: 5px;
  border-radius: 5px;
}

#skill .progress .progress-bar {
  width: 0px;
  border-radius: 5px;
  transition: 3s;
}

#skill .nav-pills .nav-link {
  color: var(--dark);
}

#skill .nav-pills .nav-link.active {
  color: #FFFFFF;
}

#skill .tab-content hr {
  width: 30px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 30px;
  background: linear-gradient(129deg, color-mix(in srgb, #f44336, #ff572200 95%) 50%, color-mix(in srgb, #FF5722, #FF5722 98%) 25%, #ff57220d 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(129deg, color-mix(in srgb, #f44336, #ff572200 95%) 50%, color-mix(in srgb, #FF5722, #FF5722 98%) 25%, #ff57220d 50%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}
.hero .intro {
  position: relative;
  padding-bottom: 10px; /* Space for the border */
    font-weight: 900;
}

.hero .intro::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px; /* Border thickness */
  background: linear-gradient(
      to right,
      var(--dark) 50%, /* First color (left to middle) */
      var(--secondary) 50% /* Second color (middle to right) */
  );
  border-radius: 5px; /* Rounded corners */
}

.hero .intro::after {
  content: '';
  position: absolute;
  bottom: -3px; /* Adjust to align with the border */
  width: 10px; /* Size of the circle */
  height: 10px; /* Size of the circle */
  background: var(--dark); /* Color of the left circle */
  border-radius: 50%; /* Make it a circle */
  left: 0; /* Position at the start */
  transform: translateX(-50%); /* Center the circle */
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
/*  background-color: var(--light);*/
  border-radius: 50px;
  color: var(--secondary);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--light);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--light);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--secondary);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
 
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: absolute;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
 background-color: var(--light);
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--light);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--dark);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}
.hero .animated {
  animation: up-down 2sease-in-out infinite alternate-reverse both;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/* Custom hover animation */
.animated-list li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-list li:hover {
  transform: translateX(5px);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

/* Raised button badge effect */
.animated-list a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
 color: var(--light);
 background-color: transparent;
 border-bottom: solid 2px var(--secondary);
 width: auto;
 padding: 5px;
  transition: all 0.3s ease;
}

.animated-list a:hover {
  background-color: var(--light);
  color: var(--dark);
}

.animated-list a i {
  transition: transform 0.3s ease;
}

.animated-list a:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: rgb(252, 250, 250);
  padding: 10px;
 box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 10px 10px;
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/*.service-details .services-list {
  background-color: var(--surface-color);
} */

.service-details .services-list a {
  color: var(--light);
  background-color: var(--dark);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
   transform: translateY(-5px);
  box-shadow: 1px 5px 1px 1px rgba(0, 0, 0, 0.15);
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--secondary);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--dark);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: var(--light);
  color: var(--secondary);
  transform: translateX(5px);
}
.service-details .services-list  a bi :hover {
  color: var(--light);
  transform: translateX(5px);
}
.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.info-wrapper  {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-right:5px;
  background-color:var(--dark);

}
.info-wrapper .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.info-wrapper .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.info-wrapper .profile .profile-position {
  color: var(--secondary);
  margin: 0;
  font-size: 0.875rem;
}

.info-wrapper .contact-info {
  padding: 5px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);

}

.info-wrapper .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
  margin-bottom:0;
}

.info-wrapper .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}


.about .image-wrapper {
  position: relative;

}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
   
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.about .image-wrapper .main-image {
  object-fit: cover;
}
@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
    height: 100%;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 45%;
  border-radius: 10px;
  border: 4px solid var(--secondary);
}

/*@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
} */

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
left:5%;
  background-color: var(--secondary);
  color: var(--contrast-color);
  padding: 5px;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

/*@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}*/

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}



  /* Call-to-action overlay on top of image */
  .cta-overlay {
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 10;
    transition: all 0.4s ease;
  }
  
  .cta-title {
    font-size: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
  }
  
  .btn-light {
    
    transition: all 0.3s ease-in-out;
  }
  
  .btn-light:hover {
    background: #007bff;
    color: white;
    transform: translateY(-5px);
  }
  
  /* Hover Animation */
  .image-wrapper:hover {
    transform: translate(30px, 20px); /* Stronger slide-out effect on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  /* Styling for container */
.image-layer-container {
    position: relative;
    display: inline-block;
    max-width: 600px;
    margin-left: 3px;
    height: 200px;
    
  }
   
  /* Main Image */
  .image-layer-container .image-main {
    position: relative;
    width: auto;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
  }
  /* Orange Layer */
  .image-layer-orange {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: var(--success); /* Orange color */
    border-radius: 8px;
  }
 
  
  /* Call to action content on top */
  .cta-content {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 3;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .cta-btn {
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 8px;
  }
  
  .cta-btn:hover {
    background: var(--success);
  }
  
  .compact-banner {
    background: url('../img/incovast_banner.jpg') center/cover no-repeat;
    min-height: 250px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 10px 10px 0px 0px ;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Text Content Overlay */
  .compact-banner .text-content {
    background: rgba(0, 0, 0, 0.61);
    padding: 1rem;
    border-radius: 10px;
    max-width: 50%;
  }

  .compact-banner h1 {
    font-size: 1.8rem;
    font-weight: bold;
  }

  .compact-banner p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }

  .compact-banner .btn {
    margin-top: 0.5rem;
  }

  /* Category Icons Section */
  .compact-banner .categories {
    display: flex;
    gap: 4px;
  }

  .compact-banner .category {
    background: rgba(0, 0, 0, 0.767); /* Semi-transparent background */
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .compact-banner .category:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.8);
  }

  .compact-banner .category i {
    font-size: 2rem;
    color: var(--secondary);
  }

  .compact-banner .category a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    transition: color 0.3s ease;
  }

  .compact-banner .category a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .compact-banner {
      flex-direction: column;
      text-align: center;
    }

    .compact-banner .text-content {
      max-width: 100%;
      margin-bottom: 1rem;
    }

    .compact-banner .categories {
      justify-content: center;
    }
  }
/*blog */

.blog-section .blog-carousel .owl-dots {
    
  position: absolute;
  top: -10px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center; 
  
}

.blog-section .blog-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-white);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.blog-section .blog-carousel .owl-dot.active {
  width: 40px;
  background: var(--secondary);
}
 /* Navigation Buttons */
 
 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}
.owl-nav .owl-prev  {
  background-color: var(--secondary); /* Primary color */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.owl-nav .owl-next {
  background-color: var(--secondary); /* Primary color */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
 /* margin-right: -25px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}


.owl-nav button:hover {
  background-color: var(--success); /* Darker danger */
}

.owl-nav button i {
  font-size: 16px;
}

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}
.testimonial-item {
  border-radius: 10px;
  min-height: 230px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
 background-color: var(--bs-white);
}
.testimonial .testimonial-carousel .owl-dots {
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-danger);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-danger);
}
/* Style for the "Bands" div */
.bands-label {
  position: absolute; /* Position absolutely */
  top: 50%; /* Center vertically */
  left: 0; /* Align to the left */
  transform: translateY(-50%); /* Adjust vertical centering */
  z-index: 10; /* Ensure it's above the swiper */
  background-color: var(--secondary); /* Semi-transparent background */
  color: white; /* Text color */
  padding: 10px 20px; /* Padding */
  font-size: 18px; /* Font size */
  font-weight: bold; /* Bold text */
  border-radius: 0 5px 5px 0; /* Rounded corners on the right */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Add a shadow */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Add spacing between letters */
}

/* Ensure the container has relative positioning */
.container {
  position: relative;
}

/* Adjust swiper to account for the "Bands" div */
.swiper {
  margin-left: 80px; /* Add left margin to avoid overlap */
}

/* Optional: Add a hover effect to the "Bands" div */
.bands-label:hover {
  background-color: rgba(0, 0, 0, 1); /* Darker background on hover */
  cursor: pointer; /* Change cursor to pointer */
}

/* Optional: Add animation to the "Bands" div */
.bands-label {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%) translateY(-50%);
  }
  to {
    transform: translateX(0) translateY(-50%);
  }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .bands-label {
    font-size: 14px; /* Smaller font size */
    padding: 8px 15px; /* Smaller padding */
    left: -10px; /* Adjust position */
  }
  .swiper {
    margin-left: 60px; /* Reduce margin for smaller screens */
  }
}
.portfolio .portfolio-carousel .owl-dots {
  margin-top: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio .portfolio-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.portfolio .portfolio-carousel .owl-dot.active {
  width: 40px;
  background: var(--secondary);
}       
 /* Custom styling for Select2 dropdown */
.select2-container--default .select2-selection--multiple {
  border: none;
  border-bottom: 2px solid var(--secondary);
  border-radius: 0;
  padding-left: 2.5rem;
  background: none;
  color: #333;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #28a745;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{

  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #28a745;
}
#bookingModal .select2-container--default .select2-selection--multiple:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #28a745;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: var(--success);
color: var(--light);

}
/* Custom styling for options */
.select2-results__option {
    padding: 8px;
}
.select2-results__group {
  font-size: 18px;
  color: var(--secondary); /* Secondary color for descriptions */
 
}

/* Custom styling for descriptions */
.select2-results__option .description {
    color: var(--dark); /* Secondary color for descriptions */
    margin-top: 4px;
}

/* Downward caret */
.select2-container--default .select2-selection--multiple::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--secondary);
}

/* Hide caret when selections are made */
.select2-container--default.select2-container--has-selection .select2-selection--multiple::after {
  display: none;
}

.table thead th {
  background-color: #6c5ce7;
  color: white;
  font-weight: 600;
  border: none;
}
.table tbody tr:hover {
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(108, 92, 231, 0.05);
}
.table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.table th, .table td {
  padding: 1rem;
  vertical-align: middle;
}
.fa-check-circle {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

      /* Table of Contents Styling */
      .table-of-contents {
        position: sticky;
        top: 90px;
        z-index:999;
        background:#ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .table-of-contents h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 1px solid var(--secondary); /* Add a border bottom */
    }

    .table-of-contents ul {
        list-style:none;
        padding: 0;
    }

    .table-of-contents ul li {
        margin: 10px 0;
        border-bottom: 1px solid #e0e0e0; /* Add a border bottom *
        transition: all 0.3s ease; /* Smooth transition for hover and active states */
    }

    .table-of-contents ul li a {
        text-decoration: none;
        color: #333;
        font-size: 1rem;
        transition: color 0.3s ease; /* Smooth color transition */
    }

    .table-of-contents ul li a:hover {
        color: var(--secondary);
    }
    .table-of-contents ul li.active a {
      color: var(--secondary); /* Change color for active item */
      font-size: 1rem; /* Bold font for active item */
  }
    /* Flex container for blog images */
.blog-images {
  display: flex;
  flex-wrap: wrap; /* Allow images to wrap to the next line if needed */
  gap: 10px; /* Space between images */
  justify-content: center; /* Center images horizontally */
  align-items: center; /* Center images vertically */
  width: 100%; /* Occupy full width */
  margin: 20px 0; /* Add margin for spacing */
}

/* Container for each image and label */
.image-container {
  position: relative; /* Required for absolute positioning of the label */
  flex: 1 1 calc(33.333% - 10px); /* Flexible width for 3 images per row */
  max-width: 100%; /* Ensure container doesn't exceed parent width */
}

/* Style for individual images */
.image-container img {
  height: 200px; /* Fixed height for consistency */
  border-radius: 10px; /* Rounded corners */
  width: 100%; /* Ensure images fill the container */
  object-fit: cover; /* Crop images to fit the container */
}

/* Style for image labels */
.image-label {
  position: absolute; /* Position the label relative to the container */
  bottom: 10px; /* Position the label at the bottom */
  left: 50%; /* Center the label horizontally */
  transform: translateX(-50%); /* Adjust for exact centering */
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  color: white; /* White text color */
  padding: 5px 10px; /* Padding for the label */
  border-radius: 5px; /* Rounded corners for the label */
  font-size: 14px; /* Font size for the label */
  text-align: center; /* Center the text */
  white-space: nowrap; /* Prevent text from wrapping */
}

/* Ensure images are responsive on smaller screens */
@media (max-width: 768px) {
  .image-container {
      flex: 1 1 calc(50% - 10px); /* 2 images per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .image-container {
      flex: 1 1 100%; /* 1 image per row on mobile screens */
  }
}

  .blog-content .video-placeholder {
      background: #e9ecef;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      margin: 20px 0;
  }

  .contactform .form-control{
    border-radius: 10px;
  }
  .contactform .form-control:read-only {
    background-color: white;
}