/********** Template CSS **********/
:root {
    --primary: #363435;
    --secondary: #111111;
    --light: #F2F8FE;
    --dark: #111111;
}

body,html{
    background-color: #bfdfec;
    color: #181717;
    font-family: Nunito;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
    font-family: Nunito;
}

p{
  font-weight: 400;
}

.bg-whitess{
    background-color: #fff;
}

.service-details .bg-white{
    background-color: #fff !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: inherit;
}

.btn.btn-primary {
    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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 10px 10px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@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;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.homeservicebg .service-item{
    height: 300px;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    /* top: -80px;
    right: -80px;
    border: 80px solid; */
    /* transform: rotate(45deg); */
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel .ourclient-item {
    position: relative;
    text-align: center;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    /* border-top: 2px dashed var(--secondary); */
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer{
    background-image: url('../img/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 100%; */
    color: #fff;
    background-color: #1c2f3a;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    /*color: var(--secondary);*/
    color: #fff;
    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(--secondary);*/
    color: #fff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    /*color: var(--primary);*/
    color: #fff;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer i{
    background-color: #dfd42d;
    padding: 10px 10px;
    border-radius: 20px;
    color: #000;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid #fff;
}

.footer .copyright a, .footer h5 {
    /*color: var(--primary);*/
    color: #fff;
}

.footer h5 {
    border-left: 5px solid #dfd42d;
    padding: 2px 5px;
}
.footer .copyright a:hover {
    color: var(--dark);
}

.sqroll{
    background-color: #075679;
    border-color: #075679;
}

.background-light{
    background-color: #dedbdc !important;
}
.contactlink{
    background-color: #3ab094;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: #FFFFFF !important;
    width: 150px;
    text-align: center;
}

.bg-white{
    background-color: #f9d05b !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.servicebtn{
    background-color: #3ab094;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    color: #FFFFFF;
}
.aboutbtn{
    background-color: #ffe9f0;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    color: #ff7fa7;
}

.text-color{
    color: #000;
}

.service-ancher{
    color: #191a1b;
    font-weight: 600;
font-family: Nunito;
}

.service-ancher:hover{
    color: #495b88 !important;
}

.homeservicebg{
  background-image: url("../img/cloud2.png");
  background-repeat: no-repeat;
    background-size: cover;
}

/* start cloud animation */

#viewport{
    /* display: flex; */
  /* min-height: 100vh; */
  margin: 0;
  align-items: center;
  justify-content: center;
  background-color: #bfdfec;
  font-family: system-ui, calibri, serif;
  background-repeat: repeat-x;
  background-image: url("../img/cloud2.png");
  animation: movement 25s linear infinite;
}

.viewport1{
    padding: 0px;
    margin-top: -346px;
}

.viewport1 img{
    width: 100%;
    /* height: 400px; */
}

@keyframes movement {
    0% {
      background-position: 0px 0px;
    }
    100% {
      background-position: 560px 0px;
    }
  }

  .servicebannerimg{
    width: 100%;
  }

  .whatwedo{
    /*background-color: #9cc3d8;*/
  }

  .ourclient{
    float: left;
    width: 100%;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background-color: #8dc3dd;
    padding: 30px;
  }

  .ourclient span{
    float: left;
    width: 20%;
  }

  .servicespan{
    float: right;
    background-color: #ccc;
    padding: 15px 15px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .serviceimgbox{
    float: left;
    width: 100%;
  }

  .serviceimgbox .color1{
    background-color: #fff;
  }

  .serviceimgbox .color2{
    background-color: #fff;
  }

  .serviceimgbox .color3{
    background-color: #fff;
  }
  .serviceimgbox .color4{
    background-color: #fff;
  }
  .serviceimgbox .color5{
    background-color: #fff;
  }
  .serviceimgbox .color6{
    background-color: #fff;
  }

  .ourclint-bg{
    background-color: #fcfcfc;
  }

  .whatwedo ul li{
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
  }
  .whatwedo h1, .homeservicebg h1, .home h1{
    /*font-size: 33px;*/
    width: 52%;
    border-bottom: 10px solid #f9d05b;
    padding: 5px 5px;
    margin: 0 auto;
    font-family: Nunito;
  }
  .whatwedo img{
    width: 74%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .banner{
    font-size: 18px;
    font-weight: 400;
    width: 100%;
  }

  .social{
    list-style: none;
    line-height: 77px;
  }

  .social li{
    float: left;
  }

  .contactbox{
    /*background-color: #ddeff9;*/
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    height: 520px;
  }

  .contactbox .form-control{
    border: 1px solid #cfd7dc;
    background-color: #cfd7dc;
    color: #000;
    font-weight: 400;
  }

  .contactbtn{
    width: 50%;
   border-radius: 10px;
    margin: 0 auto;
  }

  .contactsocial a{
    color: #000;
    font-size: 16px;
  }

  .contactbox p{
    font-size: 17px;
    text-align: center;
    font-weight: 400;
  }

  .contactsocial{
    font-weight: 400;
    font-size: 19px;
  }

  .contact-square{
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    width: 38px;
    height: 38px;
    color: #FFFFFF;
  }

  .twiter-x img{
    width: 38px;
  }

  .fb-color{
    background-color: #0865fe;
  }

  .ourserviceimgbox{
    position: absolute;
    top: -50px;
    z-index: 9999;
    /*background-color: #f9d05b;*/
    background-color: #514521;
    border-radius: 100px;
    padding: 15px 15px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 88px;
  }
  
  .service-details .ourserviceimgbox{
      top:0px !important;
      background-color: inherit !important;
      padding:0px !important;
  }
  .ourservice{
    width: 100%;
  }

  .our-service{
    position: relative;
    /*overflow: hidden;*/
    color: #fff;
    text-align: center;
  }
  .our-service h4{
    color: #000;
    font-size:22px;
  }

  .our-service p{
    text-align: center;
    color: #000;
    font-size: 15px;
    height:260px;
    font-weight:400;
  }

  .services-detail{
    /*background-image: url('../img/cuteclouds.png');*/
    background-repeat: repeat;
  }

  .service-details .service-item{
    display: flex;
  }

  .service-details .service-item .ourserviceimgbox{
    flex: 20%;
    position:relative;
    background-color:inherit;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display:flex;
  }

  .service-details .service-item .rightbox{
    flex: 80%;
  }

  .services-detail .ourserviceimgbox .ourservice {
    width: 100%;
    background: #f9d05b ;
    width: 70%;
    position: relative;
    float: left;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
}

.services-detail .ourservice {
border-radius: 10px !important;
background-color:#514521 !important;
}

.services-detail .ourserviceimgbox .ourservice img{
    width: 100%;
    padding:5px;
}

.privacypolicy {
  width: 100%;
  padding:5px;
}

.privacypolicy .title {
  font-size: 20px;
  font-weight: bold;
}

.privacypolicy .highlight {
  font-weight: bold;
}

.mainservice{
    margin-top: 14px;
    background-color: #000;
    color: #fff;
    border-bottom-right-radius: 70px;
    border-top-right-radius: 70px;
    width: 40%;
    padding: 10px 10px;
}

.mainservice .chaildmainservice{
    border-left: 8px solid #f9d05b;
    padding: 5px 10px;
}

.border-left{
  border-left: 7px solid #f38162;
  padding: 7px 7px;
}

.mainservice .chaildmainservice h2{
    color: #FFFFFF;
}

.contentcreation .mainservice .chaildmainservice{
  /*border-left: 8px solid #2744e3;*/
}

.contentcreation .border-left{
  /*border-left: 7px solid #2744e3;*/
}

.brandingdesign .mainservice .chaildmainservice{
  /*border-left: 8px solid #56af61;*/
}

.brandingdesign .border-left{
  /*border-left: 7px solid #56af61;*/
}

.digitalmarketing .mainservice .chaildmainservice{
  /*border-left: 8px solid #f38162;*/
}

.digitalmarketing .border-left{
  /*border-left: 7px solid #f38162;*/
}

.banners h1{
  font-size: 35px;
  margin-top: 13px;
  width: 100%;
  font-family: Nunito;
    text-transform: uppercase;
  border-bottom: none;
}

.banners img{
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

  @media (max-width: 767.98px) {
  .viewport1{
    display: none;
  }

  .servicespan{
    float: left;
    margin-bottom: 8px;
  }
  .mainservice{
    width: 100%;
  }
  .service-details .service-item .ourserviceimgbox{
    flex: 40%;
  }
  
  .banners img {
     width:100%; 
  }

  }

 .arrow1 {
  animation: slide1 1s ease-in-out infinite;
  margin-left: 9px;
}

@keyframes slide1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}


.parent {
  position: relative;
  /*height: 80px;*/
}

.left, .right {
  position: absolute;
  background-color: white;
  /*border: 1px solid ;*/
  padding: 1em 3em;
}
.left {
    padding: 40px 86px;
    top: 25px;
    left: 0%;
    width: 35%;
    background-color: #fad05b;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.right {
  top: 0;
  left: 30%;
  width: 70%;
  padding: 90px 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
}

.formboxs{
  width: 80%;
  float: right;
}
.left h1{
  text-align: center;
}

.btn-color{
  background-color: #56af61;
  color: #fff;
  font-weight: bold;
}

.navbar .nav-item .dropdown-menu{
  line-height: 40px;
}

.service-item p{
    font-size:14px;
    line-height: 1.3em;
    height: 4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.services-detail .service-item p{
    overflow: inherit !important;
}
.wahtdoul{
    margin-top: 70px;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .left, .right {
    position: relative !important;
  }

.left, .right{
  float: left !important;
  width: 100% !important;
  top: 0px !important;
  right: 0px !important;
  padding: 14px 7px !important;
  left: 0px !important;
}
.parent{
  float: left;
  width: 100%;
}
.contactbox{
  padding: 0px;
  height: 700px;
  margin-bottom: 20px;
}

.left{
  /*margin-bottom: 35px;*/
}
.formboxs{
  width: 100%;
}
.our-service{
  height: auto;
}
.banners h1, .banner{
    width:100%;
}
.our-service p{
    height:auto !important;
}
.wahtdoul{
    margin-top:0px !important;
}
}

@media only screen and (min-width: 769px) and (max-width: 1058px) { 
    /* Your Styles... */ 
    
    .left{
        padding: 16px 15px !important;
    width: 40%!important;
    }
    
    .right {
        left: 31% !important;
    width: 75% !important;
    padding: 70px 50px !important;
    }
    
}

@media only screen and (min-width: 1060px) and (max-width: 1399px) { 
    /* Your Styles... */ 
    
    .left {
    padding: 40px 34px !important;
    }
    
    
}

/*------------starts here ------*/
/* =========================================================
   FEATURED EVENT — FINAL CSS (drop-in)
   Place AFTER Bootstrap & Owl CSS. Remove older attempts.
   ========================================================= */

/* ---------- Header (eyebrow, title, subtitle + inline CTA) ---------- */
.featured-eyebrow{
  color:#fff;                 /* deep teal fits the sky-blue bg */
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  font-size:clamp(14px,2.2vw,25px);
  margin-bottom:6px;
}
.featured-title{
  font-weight:900;
  font-size:clamp(28px,4.2vw,45px); /* big & bold */
  line-height:1.05;
  margin-bottom:6px !important;
}
.featured-sub{
  color:#0b3b4a;
  opacity:.85;
  font-size:clamp(14px,1.6vw,18px);
  margin:0 !important;
  line-height:1.3;
}

/* Subtitle + inline CTA on the SAME line (wraps nicely on small screens) */
.featured-subrow{
  display:inline-flex;            /* stays centered under the title */
  align-items:center;
  gap:12px;                       /* space between date and button */
  margin-top:4px !important;
  flex-wrap:wrap;                 /* stack if not enough width */
}

/* Compact pill CTA inline with the subtitle */
.btn-tickets-inline{
  --c1:#0ea5e9; --c2:#7c3aed;
  font-weight:800;
  letter-spacing:.02em;
  border-radius:999px;
  padding:.5rem .9rem;
  color:#fff !important;
  background:linear-gradient(90deg,var(--c1),var(--c2));
  border:0;
  box-shadow:0 8px 18px rgba(14,165,233,.28);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  line-height:1.1;
}
.btn-tickets-inline:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(124,58,237,.30);
  opacity:.98;
}

/* ---------- Wrapper to allow full-bleed slider inside the section ---------- */
.event-hero-wrap{
  padding-left:0 !important;     /* remove inner container side padding */
  padding-right:0 !important;
  margin-top:8px !important;
}

/* ---------- Hero Carousel Core (video and banner use same frame) ---------- */
.event-hero{
  position:relative;
  isolation:isolate;             /* clean stacking context */
  width:100%;
  border-radius:28px;            /* large rounding */
  overflow:hidden;
  background:#000;
}

/* Owl clip inherits rounding so no square edges appear */
.event-hero .owl-stage-outer{
  position:relative;
  z-index:100;                   /* media layer */
  border-radius:28px;
}

/* One consistent frame height for ALL slides */
.event-hero .frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 7;           /* wide hero on desktop */
}
@media (max-width:991.98px){ .event-hero .frame{ aspect-ratio:16 / 9; } }
@media (max-width:575.98px){ .event-hero .frame{ aspect-ratio:4 / 3; } }

/* Media fills the frame exactly (video behaves like image) */
.event-hero .frame > video,
.event-hero .frame > img{
  width:100%;
  height:100%;
  display:block;                 /* remove inline gap */
  object-fit:cover;              /* crop edges for uniform look */
  object-position:50% 42%;       /* bias up slightly for faces */
  background:#000;
  border:0; outline:0;
}

/* Safety: prevent theme margins */
.event-hero video, .event-hero img{ margin:0 !important; }

/* ---------- Arrows (white, floating, clickable) ---------- */
.event-hero .owl-nav{
  position:absolute;
  inset:0;                       /* span full slider height */
  z-index:200;                   /* above overlay & media */
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;                /* distance from edges */
  pointer-events:auto;           /* wrapper accepts clicks */
}
.event-hero .owl-nav button{
  pointer-events:auto !important;
  width:72px; height:72px;       /* arrow button size */
  border-radius:50%;
  background:rgba(0,0,0,.75) !important;
  border:0 !important;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  display:grid; place-items:center;
  opacity:.95;
  transition:transform .15s ease, opacity .15s ease;
  -webkit-user-select:none; user-select:none;
  touch-action:manipulation;
  cursor:pointer;
}

/* Always-white chevrons drawn via CSS masks (theme-proof) */
.event-hero .owl-nav .owl-prev::before,
.event-hero .owl-nav .owl-next::before{
  content:''; display:block; width:30px; height:30px;
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%23000' d='M12.78 15.53a.75.75 0 01-1.06 0l-5-5a.75.75 0 010-1.06l5-5a.75.75 0 011.06 1.06L8.31 10l4.47 4.47a.75.75 0 010 1.06z'/></svg>") center/contain no-repeat;
          mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%23000' d='M12.78 15.53a.75.75 0 01-1.06 0l-5-5a.75.75 0 010-1.06l5-5a.75.75 0 011.06 1.06L8.31 10l4.47 4.47a.75.75 0 010 1.06z'/></svg>") center/contain no-repeat;
  background:#fff;               /* chevron color */
}
.event-hero .owl-nav .owl-next::before{ transform:scaleX(-1); }
.event-hero .owl-nav button:hover{ transform:scale(1.05); opacity:1; }

/* Hide dots (arrows only) */
.event-hero .owl-dots{ display:none; }

/* ---------- (If you keep the banner overlay, leave it without CTA) ---------- */
.event-banner-overlay{
  position:absolute;
  inset:0;
  z-index:150;                   /* under arrows */
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:20px;
  background:linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
}

/* ---------- Cursors (drag disabled in JS) ---------- */
.event-hero, .event-hero .owl-stage, .event-hero .owl-stage-outer, .event-hero .owl-item{
  cursor:default !important;
}


/* Default: keep full image visible */
.frame .no-crop {
  width: 100%;
  height: auto;         /* don't force a fixed height */
  object-fit: contain;  /* show full image (no crop) */
  display: block;
}

/* If any theme/slider forces height or cover, override on small screens */
@media (max-width: 576px) {
  .item .frame { 
    height: auto !important; 
    overflow: visible !important; 
  }
  .item .frame .no-crop {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important; /* beat any global object-fit: cover */
  }
}

/* Make the card a vertical flex box */
.our-service{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let the paragraph grow and then stop (no fixed height) */
.our-service p{
  flex: 1;                /* fills the available space */
  height: auto !important;
  overflow: hidden;
  display: -webkit-box;   /* optional: clamp long text */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12; /* adjust lines so cards stay even */
  line-clamp: 12;
}

/* Keep the CTA at the bottom with breathing room */
.service-ancher{
  align-self: center;     /* center the button text */
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

