

:root {
  --white-color:                  #141414;
  --primary-color:                #8186d5;
  --section-bg-color:             #272727;
  --white-color:                   #ffffff;  
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #ffffff;
  --text-first-color: white;  /* black  */  
  --text-second-color: white; /* rgb(38, 38, 38) */  
  --black-color-test: #0e1011;  /* #ffffff  0e1011*/   
  --secound-color: #6A6C6E; /* #D6E6F2  6A6C6E */ 
  --third-color: #2b2e31; /* B9D7EA   */
  --fourth-color: #769FCD;   /* 769FCD  959698 */


  --body-font-family:           'Noto Sans JP', sans-serif;

  --h1-font-size:               72px;
  --h2-font-size:               30px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                18px;/*20*/
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;

  --arinname: "ArinGujarati."; 
}

.arinname {  
  font-family: 'Sacramento', sans-serif;
  font-size: 35px;
  color: var(--primary-color);  
}
.arinname::before {
  content: var(--arinname);
  position: center;
  top: 0;
  left: 0;
}
body,
html {
  height: 100%;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 { 
  line-height: normal;
}

p, li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--white-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 52.25%; /* 16:9 *//*56.25%*/
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------
  Coming Soon
-----------------------*/
.bgimg {
  /* Background image */
  background-image: url('../images/background.jpg');
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a white text color to all elements inside the .bgimg container */
  color: white;
  /* Add a font */
  font-family: "Courier New", Courier, monospace;
  /* Set the font-size to 25 pixels */
  font-size: 55px;
}
/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*---------------------
  Audio Container
-----------------------*/
.audio-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

#speedControlButton {
  background-color: var(--text-first-color);
  margin-left: 10px;
  color: var(--first-color);
  padding: 10px 18px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/*---------------------------------------
  PreLoader
-----------------------------------------*/

#preloader{
  background: #000 url('../images/loader4.gif') no-repeat center center;
  background-size: 10%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

/*---------------------
   Hide The Data From Porfolio and Blog HTML 
-----------------------*/

body.porfolio-body main {
  display: none;
}

body.porfolio-body .specific-footer {
  display: none;
}

body.porfolio-body .main,
body.porfolio-body footer-component {
  display: none;
}

/*---------------------
  Scroll To Top
-----------------------*/
.totop{
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: var(--primary-color);
  padding: 20px;
  z-index: 999;  
  opacity: 0; /* Set initial opacity to 0 */
  transition: opacity 0.2s ease, transform 0.2s ease; /* Add transition effect */
  transform: scale(0);
  
  width: 50px; /* Set the width of the element */
  height: 50px; /* Set the height of the element */
  border-radius: 50%; /* Make the element round */
  display: flex;
  justify-content: center;
  align-items: center;

}
.totop.active {
  opacity: 1; /* Set opacity to 1 when active */
  transform: scale(1); /* Set scale to 1 when active */
}
.totop img{  
  max-width: 200%; /* Ensure image does not exceed container width */
  max-height: 200%; /* Ensure image does not exceed container height */
  width: auto; /* Allow image to resize proportionally */
  height: auto; /* Allow image to resize proportionally */
}
html{
  scroll-behavior: smooth;
}


/*---------------------
    Blog
-----------------------*/
.blog {
  background:var(--black-color-test);
}

.blog__item { 
  border: 1px solid var(--fourth-color);
  padding: 40px 48px 35px 30px;
  position: relative;
  z-index: 1;      
}
.blog__item:last-child {
  margin-bottom: 100px;
}
.blog__item h4 {
  color: var(--text-first-color);
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 18px;
}
.blog__item h6 {
  color: var(--text-first-color);
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 18px;
}
.blog__item ul {
  margin-bottom: 20px;
}
.blog__item ul li {
  color: var(--text-first-color);
  list-style: none;
  font-size: 14px;
  font-weight: 300;
  margin-right: 25px;
  position: relative;
  display: inline-block;
}
.blog__item ul li:after {
  position: absolute;
  right: -16px;
  top: 0px;
  content: "/";
}
.blog__item ul li:last-child {
  margin-right: 0;
}
.blog__item ul li:last-child:after {
  display: none;
}
.blog__item p {
  color: var(--text-first-color);
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 22px;
}
.blog__item a {
  font-size: 16px;
  color: var(--text-first-color);
}
.blog__item a span {
  font-size: 16px;
  color: var(--text-first-color);;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.bg-light
{
  background-color: var(--black-color-test) !important;  
}

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;  
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--white-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;  
  text-align: center;  
}
@media screen and (max-width: 768px) {
  .heroText {
    width: 100%; /* Adjust width for smaller screens */
  }

  .heroText h1 {
    font-size: 24px; /* Adjust font size for smaller screens */
  }

  .heroText p {
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}
/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--white-color);
  border: 1px solid var(--black-color-test);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

.about-img img{
  margin-top: 10px;
  margin-bottom: 25px;
}

/*---------------------
 Resume and About Text Resposive
-----------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .full-width {
      width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .full-width-xs {
      width: 100%;
  }
}


/*---------------------------------------
 About Page
-----------------------------------------*/
.about h2{
  margin-top: 20px;
}
.about img{
  margin-top: 20px;
  margin-bottom: 20px;
}
.about ul{
  color: var(--white-color);
}

/*---------------------------------------
  Resume Text
-----------------------------------------*/
.news-detail h1 ,.news-detail ul  {
  color: white;  
}
.news-detail h1 {
  margin-top: 20px; /* Adjust the margin-top value as needed */
}
.news-detail h4 {
  margin-top: 30px; /* Adjust the margin-top value as needed */
}
.news-detail h5 {
  margin-top: -15px; /* Adjust the margin-top value as needed */
}.news-detail h2 {
  padding-top: 20px;
}


/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}
.isotope-item {
  margin-left: 10px;
  margin-right: 10px; /* Adjust the value as needed for the desired spacing */
}
.portfolio-info {
  margin: 20px;
}
.isotope-toolbar{
  margin-bottom: 20px;
}
.tm-category-list input {
  display: none;
}

.tm-categories-text {
  color: var(--p-color);
  margin-right: 15px; /* Adjust the value according to your design */
}

.tm-categories-text :hover {
  color: var(--primary-color); /* Change this color to the desired hover color */
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--white-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--white-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

.social-share{
  color: var(--white-color);
}
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.portfolio.section-padding {
  padding-top: 7rem;
}
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: var(--black-color-test);
  margin-top: -5rem; /* Adjust this value as needed */
}
 /*------------------------------------
  Left Right Section Center Black BG H3 Text
 --------------------------------------*/

/* Font size for h3 within .bg-dark on medium-sized screens */
@media (min-width: 768px) {
  .bg-dark h3 {
    font-size: 24px;
  }
}
/* Font size for h3 within .bg-dark on large screens */
@media (min-width: 992px) {
  .bg-dark h3 {
    font-size: 30px;
  }
}
/* Font size for h3 within .bg-dark on extra-large screens */
@media (min-width: 1200px) {
  .bg-dark h3 {
    font-size: 32px;
  }
}
/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}


.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);  
  background-color: var(--black-color-test);
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid var(--white-color);
}

.contact-form button[type='submit'] {
  background: var(--secound-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
  border: 1px solid var(--white-color);
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------
  Footer
-----------------------*/
.footer-20192 {
  position: relative;
  color: #fff;
  padding: 7rem 0;
  background-color: var(--black-color-test); }
  .footer-20192 .container {
    position: relative; }
  .footer-20192 h3 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.5; }
  .footer-20192 .links li {
    margin-bottom: 10px;
    line-height: 1.5;
    display: block; }
    .footer-20192 .links li a {
      color: var(--p-color); }
      .footer-20192 .links li a:hover {
        color: #fff; }
  .footer-20192 .social li {
    display: inline-block;
    position: relative; }
    .footer-20192 .social li a { color: #fff;
      position: relative;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-block;
      margin: 0;
      padding: 0;
      background-color: var(--black-color-test);
      border: 1px solid var(--white-color);
      color: #fff; }
      .footer-20192 .social li a > span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .footer-20192 .footer-logo {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .1rem; }
  .footer-20192 .copyright {
    color: var(--white-color); }
  .footer-20192 .cta {
    -webkit-box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
    box-shadow: -20px -20px 0 0 rgba(52, 58, 64, 0.2);
    padding: 20px;
    background-color: var(--primary-color);
    top: -150px;
    position: relative; }
    .footer-20192 .cta h2, .footer-20192 .cta h3 {
      line-height: 1.5; }
    .footer-20192 .cta h3 {
      font-size: 20px; }    
      .custom-button {
        margin-left: auto;
      }

      .footer-20192 .col-sm h3,
      .footer-20192 .col-md-3 h3,
      .footer-20192 .social li a {
        color:var(--white-color);
      }
      
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

