@font-face {
  font-family: "URW DIN Regular";
  src: url("fonts/urw-din-regular.woff2") format("woff2"),
       url("fonts/urw-din-regular.woff") format("woff"),
       url("fonts/urw-din-regular.eot") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "URW DIN Regular Placeholder";
  src: url("fonts/urw-din-regular-Placeholder.woff2") format("woff2"),
       url("fonts/urw-din-regular-Placeholder.woff") format("woff"),
       url("fonts/urw-din-regular-Placeholder.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.66;
  }

  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 1.23;
  }

  .row {
  max-width: 100%;
  }

/* General Section Styling */
.testimonial-section {
padding: 80px 20px;
background-color: #ffffff;
border-top: 1px solid  #000;
}

.testimonial-section h2 {
font-size: 40px;
color: #000;
font-weight: 600;
margin-bottom: 60px;
}

.testimonial-section h2 {
font-family: 'Playfair Display', serif;
}

.varsan-footer {
background-color: #000;
color: #fff;
font-family: "URW DIN Regular", "URW DIN Regular Placeholder", sans-serif;
font-size: 15px;
}

.varsan-footer .footer-logo {
font-size: 20px;
letter-spacing: 1px;
color: #fff;
font-weight: 300;
}

.varsan-footer .footer-logo span {
font-weight: 600;
font-size: 22px;
letter-spacing: 1px;
}

.varsan-footer .footer-heading {
font-size: 18px;
text-transform: capitalize;
color: rgb(255, 255, 255);
letter-spacing: -.09em;
margin-bottom: 10px;
}

.varsan-footer .footer-list {
list-style: none;
padding: 0;
margin: 0;
line-height: 1.8;
}

.varsan-footer .footer-list li {
margin-bottom: 10px;
}

.varsan-footer .footer-list a {
font-family: "URW DIN Regular", "URW DIN Regular Placeholder", sans-serif;
color: rgb(253 253 255 / 70%);
font-size:19px;
font-weight:normal;
line-height:25px;
letter-spacing: 0em;
text-decoration: none;
transition: color 0.3s;
}

.varsan-footer .footer-list a:hover {
color: #898585;
}

.varsan-footer .footer-text {
  font-family: "URW DIN Regular", "URW DIN Regular Placeholder", sans-serif;
  color: rgb(253 253 255 / 70%);
  font-size: 18px;
  font-weight: normal;
  line-height: 27px;
  letter-spacing: 0em;
  text-decoration: none;
  transition: color 0.3s;
}

.varsan-footer .footer-text a {
  font-family: "URW DIN Regular", "URW DIN Regular Placeholder", sans-serif;
  color: rgb(253 253 255 / 70%);
  font-size: 18px;
  font-weight: normal;
  line-height: 27px;
  letter-spacing: 0em;
  text-decoration: none;
  transition: color 0.3s;
}

.varsan-footer .footer-text a:hover {
color: #aaa;
}

.varsan-footer .footer-copy {
border-top: 1px solid rgba(255, 255, 255, 0.08);
font-size: 14px;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%; /* keep same as card */
}

.parallax-img {
  will-change: transform;
  transform: translateY(0%);
  transition: transform 0.2s ease-out;
}

.card {
background-color: #fff;

}
.card-body {
background-color: white;
}

.underline-animate {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.underline-animate:hover::after {
  transform: scaleX(1);
}


/* Hide the default arrows */
.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
display: none !important;
}

/* Style the handle to include your custom logo */
.twentytwenty-handle {
background: url('../images/twenty-logo.svg') center center no-repeat;
background-size: contain;
width: 40px;
height: 40px;
border: none;
box-shadow: none;
}

  @media (max-width: 768px) {
.twentytwenty-handle {
  width: 40px;
  height: 40px;
}
}

.twentytwenty-handle:hover {
transform: scale(1.1);
transition: transform 0.3s ease;
}

#preloader {
position: fixed;
inset: 0;
z-index: 99999;
background-color: #fdfdfb; /* Match your site background */
display: flex;
justify-content: center;
align-items: center;
transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader .preloader-logo img {
width: 120px; /* Adjust as needed */
height: auto;
display: block;
}

#preloader {
transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo video {
width: 360px;  /* Adjust as needed */
height: auto;
display: block;
object-fit: contain;
object-position: 50% 70%;
}

@keyframes fadeOut {
from {
  opacity: 1;
}
to {
  opacity: 0;
  visibility: hidden;
}
}

#preloader.fade-out {
animation: fadeOut 0.8s ease forwards;
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

#preloader #skipLoader {
margin:20px 150px;
padding: 8px 18px;
background-color: transparent;
border: 2px solid #000;
color: #000;
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
cursor: pointer;
border-radius: 6px;
transition: all 0.3s ease;
}

#preloader #skipLoader:hover {
background-color: #000;
color: #fff;
}


@media (min-width: 768px) {
  .text-md-end {
      text-align: center !important;
  }
}

.text-muted {
  --bs-text-opacity: 1;
  color: #97a0a9bf !important;
}

.navbar {
  padding: 0px;
}

p {
  line-height: 1.5;
}

body:not(.loading) main,
body:not(.loading) .page-wrapper {
  opacity: 0;
  animation: contentFadeIn 1s ease 0.5s forwards;
}

.animate {
  opacity: 0;
  transform: translateY(40px);
}

.about-us-section .aboutcon {
    padding-right: 38px;
    padding-left: 70px;
  }

  .about-us-section .section-heading {
   font-size:2rem;
  }

  .about-us-section .aboutimg {
    padding-right: 40px;
  }

  .site-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    background: #ffffff;
  }
  
  @media (max-width: 768px) {
    .site-wrapper {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  hr {
    border-top: 1px solid #EBEBEB; 
    opacity: 1; 
    border-color:#000; 
    height:1px; 
    width: 100%; 
    margin-left: 0;
    margin-top: 70px;
  }

  .varsan-button {
    border-color: #000; 
    color: #000; 
    text-transform: uppercase;
    font-size:14px;
    border-radius: 0;
  }

  .varsan-button:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }

  .process {
    background-color:#fff9f3
  }

  .varsan-p {
    font-size:15px;
  }

  .varsan-h2 {
    color: #000;
    font-size:40px;
  }

  .varsan-h3 {
    color: #000;
    font-size:30px;
  }

  .video-banner {
    overflow: hidden;
    height: 100vh;
    width: 100%;
  }
  
  .video-banner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    /* object-position: 50% 70%; */
    object-position: center center;
  }
  
  @media (max-width: 768px) {
    .video-banner {
      height: 60vh;
    }
  }

  .section-heading {
    font-size: 2.4rem;
    font-weight: 600;
    color: #000;
  }
  
  .section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }
  
  .about-stats .stat-main {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  
  .about-stats .stat-sub {
    font-weight: 400;
  }
  
  .about-stats .stat-note {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
  }
  
  .about-stats hr {
    border-top: 1px solid #a8a59f;
    width: 100%;
    margin-top: 0;
  }

  .designer-title {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .social-icons .icon-link {
    font-size: 1.8rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-icons .icon-link:hover {
    color: #8a714a;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
  }
  
  .section-description {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
  }

  .testimonial-nav-link {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .testimonial-nav-link:hover {
    color: #000;
  }
  
  .testimonial-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 0.5rem;
    font-size: 12px;
  }  

  /* === Fullscreen Banner Section === */
.fullscreen-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.branding img {
  width: 160px;
  position: absolute;
  top: 6px;
}

.banner-content {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 150px;
}

.banner-content h1 {
  font-size: 6vw;
  font-weight: bold;
  line-height: 1;
}

.custom-menu-icon {
  width: 30px;
  height: 20px;
  position: absolute;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
  right:70px;
}

.custom-menu-icon span {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.custom-menu-icon span.black {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.custom-menu-icon span:nth-child(1) {  
  width: 20px;
  margin-left: 20px; 
  top: 0; 
}
.custom-menu-icon span:nth-child(2) { 
  width:40px; 
  top: 8px; 
}
.custom-menu-icon span:nth-child(3) {  
  width: 20px;
  margin-left: 20px; 
  top: 16px; 
}

.custom-menu-icon:hover span {
  width: 100% !important;
  margin-left: 0 !important;
}

.custom-menu-icon.active span {
  background-color: black;
}

.custom-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.custom-menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.custom-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.fullscreen-menu {
  position: fixed;
  top: 57px;
  right: 4%;
  height: 30%;
  width: 10%;
  background: rgb(255 255 255 / 80%);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: auto;
  transition: opacity 0.3s ease;
}

.fullscreen-menu.active {
  display: flex;
}

.fullscreen-menu .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
}

.menu-list {
  list-style: none;
  padding: 10px;
  margin: 10px;
  text-align: center;
}

.menu-list li {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.6s ease forwards;
}

.fullscreen-menu.active .menu-list li {
  animation-delay: var(--delay);
}

.menu-list li a {
  font-size: 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0px;
}

/* Animation Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Page Scroll Lock === */
body.menu-open {
  overflow: hidden;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 👈 Ensure logo/menu align at top */
  z-index: 1001;
  pointer-events: none; /* Prevent blocking underlying clicks */
}

.fixed-header .branding,
.fixed-header .custom-menu-icon {
  pointer-events: auto; /* Enable clicks only on logo and menu */
}

/* Default: white lines */
.custom-menu-icon span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: rgb(0, 0, 0);
  transition: background-color 0.3s;
}

/* When on white background, switch to black lines */
.custom-menu-icon.dark-lines span {
  background-color: black;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 115vh;
  /* height:70vh; */
  overflow: hidden;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.4s ease-out;
}

.hero-title {
  position: absolute;
  bottom: 9%;
  left: 5%;
  color: white;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title1 {
  position: absolute;
  bottom: 6%;
  left: 5%;
  color: white;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.scroll-title {
  /* font-size: 4rem; */
  transition: font-size 0.4s ease;
  font-size: 3rem;
  line-height: 60px;
  text-align: center;
}

.team-section h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.team-section p {
  margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
  .team-section .row.g-0 {
    flex-direction: column;
    text-align: center;
  }

  .team-section .col-6 {
    width: 100% !important;
    padding: 0 !important;
  }

  .team-section .ps-4 {
    padding-left: 0 !important;
    padding-top: 1rem;
  }
}

.team-section .team-bg-overlay {
  background-color: rgba(250, 247, 247, 0.8);
}

.team-section .team-align {
  margin: 55px 0px 9px 0;
}

.team-section p.email{
  margin: 165px 0px 51px 0;
}

.project-detail {
  background-color: #fff;
}

.project-meta span {
  color: rgb(36,37,40);
}

.project-meta p {
  color: rgb(112,112,112);
}

.object-fit-cover {
  object-fit: cover;
}

.project-detail .project-name {
  padding: 100px 100px;
  font-size: 50px;
}

.project-meta {
  padding: 0px 100px;
}
.project-meta.project-sec {
  padding: 300px 70px 0px 70px;
}

.project-meta p.project-expl {
  font-size:12px;
  text-align:justify;
}

.project-meta1 {
  padding: 100px;
}
.project-meta1.project-sec1 {
  padding: 50px 25px;
  border-left: 2px solid #000;
}

.project-meta1 p.project-expl {
  font-size:17px;
  text-align:left;
}

.project-meta1 span {
  color: rgb(36,37,40);
}

.project-meta1 p {
  color: rgb(112,112,112);
}


.border-bottom {
  border-bottom: 1px solid #707070 !important;
}


.swiper-slide {
  width: auto; /* Important for variable width */
  margin-right: 20px; /* Space between images */
}

.swiper-slide img {
  max-height: 100vh;
  width: auto;
  /* border-radius: 8px; */
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff; /* or black based on your background */
  background: rgba(0, 0, 0, 0.3);  /* Optional background */
  padding: 20px;
  border-radius: 50%;
  z-index: 10;
  width: 60px;   /* controls clickable area */
  height: 60px;  /* controls SVG scale since it's 100% */
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(107, 93, 93, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pro-ject-img:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.hover-overlay p {
  margin: 0;
  font-size: 1rem;
}

.team-card .team-p-3 {
  /* padding:3px 13px; */
  padding:85px 13px;
}

.team-section .pxr-5 {
  padding-right:2rem;
}

.team-section .pxl-5 {
  padding-left:2rem;
}

.header-box {
  background-color: white;
  padding: 1.1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%; /* or whatever fits your layout */
  z-index: 1002;
}

.header-box img#logo {
  max-height: 120px; /* adjust if needed */
}

@media (max-width: 768px) {
  .hover-overlay h2 {
    font-size: 1.8rem;
  }

  .hover-overlay p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .branding img {
    /* width: 100px;
    top: 4px; */
    width: 150px;
    top: 6px;
}

.custom-menu-icon {
  right: 35px;
  top: 18px;
}

.scroll-title {
  font-size: 2.5rem;
  transition: font-size 0.4s ease;
  line-height: 30px;
  
}

.py-5m {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.about-us-section .img-mo {
  /* margin-top: 50px; */
  margin-bottom: 20px;
}

.py-m {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mb-m {
  margin-bottom: 0rem !important;
}
.team-card img {
  margin-bottom: 1rem;
}

.team-card h5 {
  font-size: 1.25rem;
}

.team-card p {
  font-size: 0.9rem;
}

.team-card .mb-5, .team-card .pb-3, .team-card .pt-5, .team-card .pt-3, .team-card .mt-5, .team-card .py-5 {
margin:0 !important;
padding:0 !important;
}

.team-section .pxr-5, .team-section .pxl-5 {
  padding-right:0;
  padding-left:0;
}

.team-card .team-p-3 {padding: 10px;}

/* .col-md-6.pe-4 {
  padding-right:0px !important;
  padding-bottom:1.5rem !important;
} */
/* .col-md-6.ps-4 {
  padding-left:0px !important;
  padding-bottom:1.5rem !important;
} */

.hero-section1 .pr-4 {
  padding-right:0px !important;
}

.hero-section1 .pl-2 {
  padding-left:0px !important;
}

.prozects .py-5 {
  padding-top:0 !important;
  padding-bottom:0 !important;
}

.project-detail .project-name {
  padding: 20px 20px 0px 20px;
  font-size: 50px;
  text-align: center;
}
.project-meta {
  padding: 20px 30px;
}
.project-meta.project-sec {
  padding: 0px;
}

.project-meta1 {
  padding: 20px 30px;
}
.project-meta1.project-sec1 {
  padding:20px 20px 0px 20px;
  border-left:none;
}

.pro-ject-img {
  height: auto !important;
  display: block;
}

.pro-ject-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.4s ease-out;
}
.hero-section {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  height:46vh;
  overflow: hidden;
}
.fullscreen-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: white;
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.menu-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

.menu-list li a {
  font-size: 2rem;
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: inline-block;
  padding: 15px 0px;
}

.fullscreen-banner {
  position: relative;
  /* height: 46vh; */
  height: 80vh;
  overflow: hidden;
}

.offcanvas-header {
  padding: 0;
}

.offcanvas-title {
  font-size: 40px;
  padding: 0;
}


}

.offcanvas {
  background-color: #1d1d1d;
  color: white;
  width: 920px !important;
  max-width: 100%;
  padding: 100px 20px;
}

.offcanvas-title {
  font-size: 50px;
  padding: 0px 0px 35px 10px;
}

.offcanvas-header .btn-close {
  filter: brightness(0) invert(1); /* makes icon white */
  position: absolute;
  top: 2rem;
  right: 3rem;
  z-index: 1051;
}

.offcanvas p {
  font-size: 14px;
  font-family: "Questrial", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.2;
}

.offcanvas p span{
  line-height: 1.4;
}

.offcanvas p.ctitle{
 font-size:16px;
 font-weight:900;
}
.form-label {
  font-size: 14px;
  font-family: "Questrial", sans-serif;
  font-weight: lighter;
  font-style: normal;

}

.form-control {
  border-radius: 0;
  border-color: #666;
  color: white;
}

.form-control::placeholder {
  color: #999;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.row.g-0 {
  margin: 0;
}

.col-md-6 {
  padding: 0; /* Remove Bootstrap's gutter spacing */
}

.pro-ject-img {
  position: relative;
  overflow: hidden;
}

.pro-ject-img img {
  width: 100%;            /* fills full width of the column */
  height: auto;           /* adjusts height automatically */
  display: block;         /* remove inline spacing */
  object-fit: contain;    /* shows full image without cropping */
}

.hero-section1 {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
}

.fixed-header.hide-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.fixed-header {
  transition: transform 0.3s ease;
}

[data-aos] {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

/* html, body {
  cursor: pointer;
} */

a,
button,
input[type="button"],
input[type="submit"],
label,
.menu-toggle,
.clickable {
  cursor: pointer;
}

.pointer-cursor {
  cursor: pointer;
}

.questrial-regular {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn-outline-light {
  border-radius: 0 !important;        /* No rounded corners */
  background-color: transparent !important;  /* No background */
  color: #f8f9fa;                     /* Default light text */
  border-color: #f8f9fa;              /* Optional: keep border */
  transition: color 0.3s ease;
  padding: 8px 25px;
  font-size: 14px;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: transparent !important;  /* Prevent default white bg on hover */
  color: #e0e0e0 !important;         /* Mild text color change */
  border-color: #f8f9fa !important;  /* Optional: keep border consistent */
  box-shadow: none !important;       /* No glow or outline */
}

.scroll-project {
  font-size:35px;
}

.prozects .ps-4 {
  padding-left:12px !important;
}

.prozects .pe-4 {
  padding-right:12px !important;
}

/* Overlay for nav */
.overlay {
  width: 100%;
  padding: 0px 0px;
  background: rgba(0,0,0,0.4);
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branding img {
  height: 50px;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0px 50px;
}

.main-nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #000;
}

/* Mobile Toggle */
.menu-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002; /* higher than menu */
}

.menu-toggle span {
  background: rgb(0, 0, 0);
  height: 3px;
  width: 25px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    background: rgba(255, 255, 255, 1);
    display: none;
    position: absolute;
    top: 60px; /* just below icon */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: 999;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap:5px;
    padding: 0;
  }

  .main-nav ul li {
    margin: 10px 0;
  }

  .main-nav.show {
    display: block;
  }

  .header-box {
    padding:30px 20px;
  }

  .scroll-project {
    font-size: 20px;
}
.prozects .ps-4 {
  padding-left:0px !important;
}

.prozects .pe-4 { 
  padding-right:0px !important;
}

.offcanvas {
  padding: 10px 20px;
}
.offcanvas-title {
    font-size: 40px;
    padding: 0;
}
.offcanvas p.ctitle {
  font-size: 15px;
}
.offcanvas p {
  line-height: 0.2;
}

}

/* Active state turns into X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

span.underline-animate {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

span.underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

span.underline-animate:hover::after {
  transform: scaleX(1);
}

.twentytwenty-container {
  width: 72%;
  height: auto;
  margin: 0 auto;
  /* max-height: 700px; */  /* optional */
}

.twentytwenty-container img {
  width: 100%;
  height: auto;
  display: block;
}



/* .video-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  /* overflow: hidden;
} */ */

.video-hero {
  position: relative;
  width: 100%;
  height: 400px; /* custom defined height */
  overflow: hidden;
  background: #000;
}

/* .video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
} */

.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures video fills height without distortion */
}
.offcanvas ul {
  margin: 0;
  padding: 0;   
}

.offcanvas ul li {
  list-style: none;
}

.offcanvas a {
  text-decoration: none;
  color: #fff;
  line-height: 20px;
}
.offcanvas a:hover {
  color: #aaa;
}

/* Hide mobile version by default */
.mobile-content {
  display: none;
}

/* Show desktop by default */
.desktop-content {
  display: block;
}

/* On mobile screens */
@media (max-width: 767px) {
  .desktop-content {
    display: none;
  }
  .mobile-content {
    display: block;
  }
  .hero-title-malgudi {
    bottom:12%;
    left:2%;
  }
  .twentytwenty-container {
    width: 96%;
}
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-logo img {
  width:180px;
}

hr.footer-hr {
  border-top: 1px solid #EBEBEB;
  opacity: 1;
  border-color: rgb(253 253 255 / 70%);
  height: 1px;
  width: 100%;
  margin-left: 0;
  margin-top: 70px;
}

.hero-title-malgudi {
  bottom: 12%;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: 200px;         /* fixed height for mobile */
  object-fit: cover;     /* crop without distortion */
  border-radius: 8px;    /* optional – looks neat */
}

@media (min-width: 768px) {
  .mySwiper .swiper-slide img {
    height: auto;        /* let desktop/tablet use natural image height */
  }
}