/* default values */
@font-face {
    font-family: spacegrotesk;
    src: url(/fontfamily/SpaceGrotesk-Bold.ttf);
}

@font-face {
    font-family: inter;
    src: url(/fontfamily/Inter_28pt-Regular.ttf);
}

h1,h2,h3,h4,h5,h6 
{
    font-family: spacegrotesk;
}

p, span, a 
{
    font-family: inter;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.icon
{
    height: 40px;
    width: 40px;
    object-fit: cover;
}

.bicon
{
    height: 25px;
    width: 25px;
    object-fit: cover;
}

.br-100
{
    border-radius: 100%;
}

.col-img
{
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 4px 0px 10px black;
}

.col-img1
{
    width: 100%;
    height: 330px;
    object-fit: cover;
    box-shadow: 4px 0px 10px black;
}

.col-height
{
    height: 200px !important;
}

.img-expertise
{
    height: 50px;
    width: 50px;
    object-fit: cover;
}

/* header section */
.navbar
{
    height: 80px;
}

.navbar-brand img 
{
    height: 60px; 
    width: auto;
    object-fit: cover;
}

.offcanvas
{
    width: 100% !important;
    text-align: center;
}

.offcanvas-title img
{
    height: 80px;
}

.nav-item
{
    font-size: 60px;
}

.navbar-tel
{
    text-decoration: none;
    color: black;
}
/* header section */

/* banner section */
#banner-section
{
    height: 650px;
    position: relative;
}

.banner-section-video
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-section-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:linear-gradient(to top, rgba(255,255,255,0.4), rgba(0,0,0,0));
}

.banner-section-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: black;
}

.banner-section-content h1 
{
    font-size: 100px !important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 4px #111;
}
    
.hybrid span
{
  color: white;
  font-weight: 700;
  background-color: rgba(255, 165, 0, 0.5);
  padding: 8px;
  border-radius: 8px;
}

.hybrid span::after
{  
  align-self: center;
  content: '|';
  transition: .05s;
  animation: blink 0.5s infinite;
}  

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.banner-section-but
{
    display: inline-block;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 0px 8px black;
    text-decoration: none;
    padding: 10px 15px;
}

.banner-section-but img 
{
    margin-left: 4px;
}

/* banner section */

/* -----------------service section---------------- */
.service-h2
{
    position: relative;
}

.service-h2::after 
{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: black;
    margin-top: 1%;
}
/* -----------------service section---------------- */

/* -------------future section------------ */
#future-section
{
    position: relative;
    min-height: 300px;
}

.future-section-video
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.future-section-content
{
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    transform: translate(-50%,-50%);
    text-align: center;
}

.future-section-h5 
{
    background-color: rgba(255, 165, 0, 0.5);
    border-radius: 6px;
    display: inline-block;
}
/* -------------future section------------ */

/* -----------------featured work--------------- */
.featured-section-items .card
{
    width: 100%;
}

.card-img-top 
{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
/* -----------------featured work--------------- */


/* ---------------about section---------------- */
#about-section
{
    background-image: url(/media/about-section.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ---------------about section---------------- */


/* --------------------serving section--------------------- */
.serving-section-marquee {
  background-color: transparent;
  min-height: 100px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* Marquee */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.marquee-item {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: black;
  white-space: nowrap;
  /* The magic: text reacts to whatever is behind it */
  mix-blend-mode: difference;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.stage:hover .marquee-track {
  animation-play-state: paused;
}

.caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  color: #999;
  z-index: 2;
  color: #fff;
}

.caption a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  margin-left: 2px;
  transition: border-color 0.3s ease;
}

.caption a:hover {
  border-bottom-color: #fff;
}

.serving-section-content
{
    position: relative;
    height: 500px;
}

.serving-section-contentt
{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ssc-button
{
    background-color: black;
    border-radius: 6px;
    padding: 4px;
    color: white;
    width: 50%;
    margin: auto;
    padding: 8px;
    list-style-type: none;
}

.ssc-button li 
{
    display: inline-block;
}

.user-satisfaction
{
    font-size: 80px;
}
/* --------------------serving section--------------------- */

/* ------------------expertise section--------------------- */
#expertise-section
{
    background-color: rgba(0,0,0,0.4);
}
/* ------------------expertise section--------------------- */

/* testimonial section */

.feedback-card 
{
    width: 30.33% !important;
    height: 400px !important;
    position: relative !important;
}

.card-stars
{
    position: absolute;
    bottom: 1%;
    left: 0.5%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.card-stars li 
{
    display: inline-block;
    margin-right: 4px;
}

/* testimonial section */

/* hireme section */
/* #hire-me-section
{
    height: 400px;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.5), rgba(0,0,0,1)) ,url(/media/hireme.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hireme-content
{
    position: absolute;
    left: 1%;
    bottom: 10%;
}

.hireme-button
{
    width: auto;
    position: absolute;
    right: 1%;
    bottom: 20%;
}
    */

.hireme-content-but
{
    padding: 8px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background-color: white;
    color: black;
    box-shadow: 0px 0px 8px black;
    border: none;
} 
/* hireme section */

/* message section */

.send-message-form input, .send-message-form select 
{
    margin-bottom: 20px;
    padding: 8px;
}

.send-message-form textarea
{
    margin-bottom: 20px;
    height: 150px;
    width: 100%;
    resize: none;
    padding: 8px;
}

.send-message-content
{
    color: white;
    padding: 8px;
    background-image: url(/media/demo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* message section */

/* faq section */
#faq
{
    background-color: rgba(0,0,0,0.4);
}
/* faq section */

/* accordion section*/
.accordion-item
{
    margin-bottom: 20px;
}
/* accordion section*/

/* contact me section*/
 .profile-img
{
    width:250px;
    height:450px;
    object-fit:cover;
    border-radius:45%;
    box-shadow: 0px 0px 8px black;
}

.contact-me-section
{
    min-height:100vh;
    display:flex;
    flex-flow: column nowrap;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:50px 20px;
    /* background:#f8f9fa; */
}

.contact-me-section p
{
    max-width:700px;
    margin:20px auto;
    font-size:18px;
    color:#555;
}

.contact-me-social
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact-me-social li 
{
    display: inline-block;
    margin-right: 8px;
}
/* contact me section*/

/* footer section */
#footer
{
    background-color: rgba(0,0,0,0.4);
}

.footer-logo
{
    height: 150px;
    width: auto;
    object-fit: cover;
}

.footer-list
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-list li 
{
    display: inline-block;
    margin-right: 10px;
}

.footer-list li a 
{
    text-decoration: none;
    color: black;
}
/* footer section */


/* ----------------------Responsiveness---------------------- */
@media screen and (max-width:768px) 
{

    .navbar-tel
    {
        display: none;
    }

    .banner-section-content h1 
    {
        font-size: 85px !important;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: 4px #111;
    }

    .featured-section-items .card
    {
        margin: 8px 0;
    }

    .absm-row
    {
        display: flex;
        flex-flow: column nowrap;
        gap: 180px;
    }

    .expertise-items 
    {
        flex-flow: row wrap;
    }

    .expertise-items div 
    {
        margin-top: 6px;
    }

    .client-feedback
    {
        flex-flow: column nowrap;
    }
    
    .feedback-card 
    {
        width: 100% !important;
        height: 350px !important;
        margin: 8px 0;
    }

    .send-message-content
    {
        margin-top: 12px !important;
        height: 300px;
    }

    
}

@media screen and (min-width:768px) and (max-width:1300px) 
{
    .absm-row
    {
        display: flex;
        flex-flow: column nowrap;
        gap: 180px;
        align-content: center;
    }

    .send-message-content
    {
        margin-top: 12px !important;
        height: 400px;
    }

    .contact-me-section
    {
        min-height: 50vh;
    }
}