:root{
    --primary-color: #000000;
    --darker-primary-color: #272727;
    --primary-contrast-text-color: #fac709;
    --secondary-contrast-text-color: rgb(0, 0, 0);
    --secondary-color: #fac709;
    --content-text-color:#2f2f2f;
    --page-border:10vw;
    --page-content-width:80vw;
    --body-bg :#ffffff;
}

html,body{
    margin: 0;
    padding:0;
    width: 100%;
    max-width:100vw;
    height: auto;
    overflow-x:hidden;
    letter-spacing: 1px;
    background-color: var(--body-bg);
}

 html {
    scroll-behavior: smooth;
  }

/* Common */

.m-bold {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.m-semibold {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.m-extrabold {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.m-medium {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.m-regular {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.text-60-img-40{
    width: var(--page-content-width);
    margin-left: var(--page-border);
    padding:40px 0px;
}

.text-60-img-40 .text,.text-60-img-40 .image{
    display: inline-block;
    vertical-align: middle;
}
.text-60-img-40 .text{
    width: 59%;
    margin:0px;
    padding:0px;
}
.text-60-img-40 .image{
    width: 40%;
    margin:0px;
    padding:0px;
}

.heading{
    text-align: left;
}

.heading .mainheading{
    color: var(--primary-color);
    font-size: 44px;
    margin-bottom: 20px;
}
.heading hr{
    height: 6px;
    border:0px;
    background-color: var(--secondary-color);
    width: 40px;
    display: inline-block;
    vertical-align: middle;
}

.heading .subheading{
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.highlight-points ul{
  display: flex; 
  justify-content: space-between;
}

.highlight-points ul li{
   display: inline-block;
   list-style: none;
   text-align: center;
  
}

.highlight-points ul li .highlight-image{
   border: 4px solid var(--secondary-color);
   border-radius: 100px;
   position: relative;
   width: 150px;
   height: 150px;
   margin: auto;
}

.highlight-points ul li .highlight-image img{
   position: absolute;
   background: var(--body-bg);
   left: 16px;
   top: 43px;
   width: 116px;
}

.highlight-points ul li .highlight-heading{
   margin:20px 0px;
   margin-top: 50px;
}

.highlight-points ul li .highlight-details{
   color: var(--content-text-color);
   width: 300px;
   font-size: 16px;
}

.input-field label{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    display: block;
}

.input-field input,.input-field textarea{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    display: block;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--darker-primary-color);
    color: var(--primary-contrast-text-color);
    text-indent: 10px;
    border:0px;
    width: 450px;
    height: 45px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 25px;
}

.input-field textarea{
    height: 200px;
}

.btn-primary{
    background-color: var(--secondary-color);
    color: var(--secondary-contrast-text-color);
    border:0px;
    width: 150px;
    height: 45px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: font-size 1s ;
}

.btn-primary:hover{
    font-size: 16px;
}

/* Common */





/* Header Section */
#navbar .menu_show, #navbar .menu_hide{
    display: none;
}
#menu ul li{
    list-style: none;
    display: inline-block;
    font-size: 16px;
    padding:15px 15px;
    color: var(--primary-color);
    cursor: pointer;
    text-transform: capitalize;

}

#menu ul li.active{
    font-weight: 700 !important;
    color: var(--secondary-color);
}

#menu ul li:hover{
    font-weight: 700 !important;
}

#navbar{
    position: sticky;
    top:0;
    z-index:99;
    background-color: white;
    box-shadow: 10px -12px 38px black;
}

#logo{
    padding:15px 50px;
    cursor: pointer;
}

#logo, #menu{
    display: inline-block;
}

#menu{
    float: right;
    margin-right: 50px;
}


/* Header Section */


/* Slider section */
.hero-slider {
  position: relative;
  height: calc(100vh - 97px);
  overflow: hidden;
  background-image: url('../assets/hero-bg-2.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Background video */
.hero-slider video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Black overlay */
.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Adjust opacity here */
  z-index: 1;
}

/* Content */
.hero-slider .content {
  position: relative;
  text-align: center;
  padding-top: 30vh;
  z-index: 2;
}

.hero-slider .content .tagline {
  color: var(--secondary-color);
  width: 500px;
  margin: auto;
  font-size: 20px;
  margin-top: 20px;
}

.btn-hero {
  height: 50px;
  margin: 20px;
}

.btn-semi-hero {
  height: 50px;
  margin: 20px;
  border: 2px solid var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
}

/* Slider section */



/* About one */
.about-one{
    margin-top: 50px;
    margin-bottom: 50px;
}
.about-one .content{
    font-size: 16px;
    width: 80%;
    margin-top: 20px;
    line-height: 25px;
    color: var(--content-text-color);
    text-align: justify;
}
/* About one */



/* services */
.services {
    width: 100vw;
    box-sizing: border-box;
    padding: 50px var(--page-border);
    background-color: var(--primary-color);
    overflow: hidden; /* hide scrollbar overflow */
}

.services .mainheading,
.services .subheading {
    color: var(--primary-contrast-text-color);
}

.services .service-card {
    overflow: hidden;
    position: relative;
    max-width: 80vw;
}

.services .service-card ul {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    margin: 0;
    list-style: none;
    width: max-content;
    animation: scrollServices 20s linear infinite; /* auto-scroll */
}

.services .content{
    margin: 20px 0px;
    color: var(--primary-contrast-text-color);
    font-size: 16px;
    text-align: justify;
}

.services .service-card ul:hover {
    animation-play-state: paused; /* pause on hover */
}

.services .service-card ul li {
    background-color: var(--secondary-color);
    color: var(--secondary-contrast-text-color);
    flex: 0 0 300px;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    font-family:Calibri !important;
}
.services .service-card ul li .service-details{ 
font-family:Calibri !important;
}

.services .service-card ul li .service-heading{ 
    margin-bottom: 20px; 
    margin-top:10px;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
     font-family:Calibri !important;
}

/* Auto-scroll animation */
@keyframes scrollServices {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* adjust for loop distance */
}


/* services */




/* About two */
.about-two{
    width: var(--page-content-width);
    margin-left: var(--page-border);
    margin-top: 50px;
    margin-bottom: 50px;
}
.about-two .highlight-details{
font-family:Calibri !important;
}

.about-two .highlight-points{
    margin-top: 50px;
    
}
/* About two */



/* Contact Footer */
.contact{
    padding-top: 50px;
    margin-left: 0px;
    padding-left: var(--page-border);
    padding-right: var(--page-border);
    background-color: var(--primary-color);
    color: var(--primary-contrast-text-color);
}



.contact .mainheading,.contact .subheading{
    color: var(--primary-contrast-text-color);
}
.contact.text-60-img-40 > div{
    width: 49%;
    box-sizing: border-box;
}
.contact .content{
    margin-top:30px;
}

.contact table td{
    vertical-align: top;
    font-size: 12px;
    min-width: 100px;
    padding-top: 10px;
    
}
.contact table td a{
    color: var(--primary-contrast-text-color) !important;
    text-decoration: underline;
}

.contact table tr td:nth-child(even){
    vertical-align: top;
    font-size: 14px;
}
/* Contact Footer */

/* CopyRight Footer */
.copyright{
    position: relative;
    background: var(--darker-primary-color);
    color: var(--primary-contrast-text-color);
    padding: 30px;
    font-size: 12px;
    padding-left: var(--page-border);
}

.lisenceqr{
    position: absolute;
    bottom: 90px;
    right: 20px;
    border:1px solid var(--primary-color);
}
/* CopyRight Footer */

/* team */
.ourTeam{
    margin-top: 90px;
    width: var(--page-content-width);
    margin-left: var(--page-border);
}
.ourTeam .highlight-points ul{
    justify-content: space-around;
}

.ourTeam .heading{
    text-align: center;
}

.ourTeam .highlight-image img{
    position: static !important;
    width: 100% !important;
}
.ourTeam .highlight-image {
    overflow: hidden;
}

.ourTeam .founding{
    margin-top: 50px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
}
.ourTeam .teamImg img{
    width: 80%;
    margin-left: 10%;
    border: 1px solid grey;
}
.ourTeam .teamHeading{
    margin: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 80%;
    text-align: center;
}
/* team */


/* career */
.career.text-60-img-40 .text{
    width: 100%;
}
.career .jobtitle{
    font-size: 30px;
}
/* career */


@media (max-width: 1180px) {
    :root{
         --page-border:10%;
    --page-content-width:80%;
    }
  #menu{
    display: none;
  }
  .hero-slider .content .tagline {
    width: 80vw;
 }

  .about-one.text-60-img-40 .text, .about-one.text-60-img-40 .image{
    width: 80vw;
  }

  #contact.text-60-img-40 .text, #contact.text-60-img-40 .image{
    width: 80vw;
  }
  #contact.text-60-img-40 .image{
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .about-one.text-60-img-40 .image{
    margin-top: 50px;
  }
  .about-one .content{
    width: 100%;
  }
  .about-two .highlight-points ul{
    display: block;
    text-align: center;
    padding-left: 0px;
  }
  .about-two .highlight-points ul li{
    margin-top: 50px;
  }
  .lisenceqr{
    bottom: 100px;
    left: 0;
    margin-left: calc(50vw - 50px);
  }
    .input-field input,.input-field textarea{
    
    width: 80vw;
    }
    .heading hr{
    width: 20px;
    margin-right: 10px;
    }
    .heading .subheading{
    margin-left: 0px;
    }
    #logo img{
        width: 100px;
    }
    #navbar .menu_show,#navbar .menu_hide{
        display: block;
        position: absolute;
        right: 30px;
        top:20px;
        cursor: pointer;
        z-index:99;
    }
    #navbar .menu_hide{
        display: none;
    }
    #navbar .menu_show img,#navbar .menu_hide img{
        width: 30px;
    }
    #menu{
        background: white;
        position: absolute;
        top:0;
        left: 0;
        width: 100vw;
        height: 100vh;
    }
    #menu ul{
        margin-top: 50px;
    }
    #menu ul li {
        display: block;
        font-size: 25px;
        text-decoration: none;
    }
    #menu ul a{
        text-decoration: none;
    }
    .ourTeam ul{
        display: block;
        margin: 0;
        padding: 0;
    }
    .ourTeam ul li{
        display: block;
    }
    .ourTeam{
        margin-bottom: 50px;
    }
}