
:root {
     --white:#ffffff;
     --red:#B22222;
     --baseblue:#34437A;
     --purple:#EBE5FF;
     --bgliteyellow:#FBFBFB;
     --litegreen:#EFFFE6;
     --liteblue:#DEF4FF;
     --grey:#EDEDED;
 }
 .purple{
background-color:var(--purple);
}
 
.litegreen {
  background-color: var(--litegreen);
}

.liteblue {
  background-color: var(--liteblue);
}
.bggrey{
    background-color: var(--grey);
}
.bglight{
    background-color: var(--bgliteyellow);
}
.radius5{
    border-radius:5px;
} 
.radius0{
    border-radius:0px;
} 
.radius20{
    border-radius:20px;
} 
.radius50-0{
    border-radius:40px 0 0 40px;
} 
.greycolor{
    background: #F5F5F5;
}

h1,h2,h3,h4,h5,h6{
	font-family: "Quicksand", sans-serif;
}
body{
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 16px;
    overflow-x: hidden;
    color: #454444;
}
.rubikfont{
     font-family: "Rubik Marker Hatch", system-ui;
}


 /* Style the navbar */
.men{
    
    z-index:1000;
}
.logo{
	    width: 100px;
}
#navbar {
  /*overflow: hidden;*/
      display: flex;
    justify-content: flex-end;
}

/* Navbar links */
#navbar a {
  float: left;
  display: block;
  color: var(--base);
  text-align: center;
  padding: 14px;
  font-size:16px;
  text-decoration: none; 
  margin-left: 0.8rem;
}


.mega_ul
{
    padding-left: 1px;
    list-style: none;
}
.mega_ul li
{
    display: flex;
    align-items: center;
    padding: 0px 0px 7px 0px;
}
.mega_ul li a
{
    color:#000000bd;
    font-size:15px;
}
.mega_ul li a:hover
{
    color:var(--bs-red);
}
 .megaa.dropdown-menu[data-bs-popper] {
    top: 101%;
    width: 97vw;
    left: -46vw;
    margin-top: 0;
}
 

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
 .logosz{
    width: 125px;
 }
  
#navbars{
    z-index:1000;
}
#navbars .nav-item{
    margin:10px 0;
    font-weight:600;
}
#navbars .navbar-nav{
    padding:50px 0 30vh 0;
    
}
#navbars .navbar-nav .nav-link { 
    font-size: 26px;
}

#hamburger-menu,
         #mobile-menu {
         display: none;
         }
         @media only screen and (max-width: 770px) {
         
            #navbar {
    overflow: hidden;
    display: flex;
    justify-content: space-between !important;
    
    z-index:1026;
    /*box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;*/
   }
   #hamburger-cross{
       z-index:1026;
   }
   #mobile-menu{
  	 z-index:1025;
   }
   
         #mobile-menu {
             box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 7px;
             background-color: #fff7f7fa;
            width: 55%;
            height: 66vh;
            position: absolute;
            top: 0;
            left: 0;
            display: none;
            justify-content: flex-end;
            align-items: center;
            flex-direction: column;
            transition: transform 0.3s ease;
            transform: translateY(-100%);
         }
         .mobile-nav-items > ul {
         padding: 0px;
         }
         .mobile-nav-items > ul > li {
         text-align: center;
         position: relative;
         list-style: none;
         margin: 10px;
         padding: 10px 20px;
         cursor: pointer;
         }
         .mobile-nav-items > ul > li > a {
         color: var(--base);
         text-decoration: none;
         font-size: 20px;
         }
         .mobile-nav-items > ul > li::after {
         content: "";
         position: absolute;
         width: 100%;
         height: 0.17rem;
         background-color: var(--white);
         left: 0;
         bottom: 0;
         transform-origin: 0% 100%;
         transform: scaleX(0);
         transition: transform 0.3s ease;
         }
         .mobile-nav-items > ul > li:hover::after {
         transform: scaleX(1);
         }
         
         #hamburger-cross {
         display: block;
         color: var(--red);
         cursor: pointer;
         font-size: 30px;
         position: absolute;
         top: 20px;
         right: 26px;
         }
         #hamburger-menu {
        display: block;
        color: var(--brown);
        cursor: pointer;
        font-size: 40px;
    }
         
         #navbar a {
  	  	padding: 0px!important;
   	 }
    
    
         }
         
         .fade-in-fwd {
	-webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	        animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}


@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


         
         .fade-in-top {
	-webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
	        animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}
 
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.sticky {
  position: sticky;
  top: -1;
  z-index: 1000;
  background-color: white; /* Add background to avoid transparency */
  box-shadow: 0 4px 2px -2px #95949417; /* Optional shadow for effect */
  transition:0.50s linear;
}
.sticky a{
    color:#000000 !important;
}
#conta {
    padding-top: 1.5rem  ;
    padding-bottom: 1.5rem  ;
}
.sticky #conta {
    padding-top: 0.5rem  !important;
    padding-bottom: 0.5rem  !important;
}

.whatsapp-button { 
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: all 0.5s ease;
    display: none;
} 
.whatsapp {
    width: 75%;
    margin-left: -10px;
}
.visible {
    display:block;
}
 
 
 .relative{
     position:relative;
 }
 .absolute{
     position:absolute;
 }
 
.men a.active{
    color:var(--red)!important;
}
.sticky{
    position:sticky!important;
}

 .dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef!important;
}
.absolute{
	position: absolute;
}
.relative{
	position: relative;
}
.pos{
	top: 0;
	left: 0;
	right: 0;
}
.posleft{
	right: 0;
	top: 0;
	width: 75%;
}
.marginminus{
	    margin: 0 0 -1.5rem;
}
.z1{
	z-index: 1;
}
.z2{
	z-index: 2;
}
.buttons{
    background: var(--red);
    color: var(--white);
    font-weight: 500;
    padding: 8px 30px;
    font-size: 16px;
    border-radius: 50px;
}
.buttons2{
    
    background: var(--red);
    color: var(--white);
    font-weight: 500;
    padding: 6px 30px;
    font-size: 16px;
    border-radius: 50px;
}
.fs-10  { font-size: 10px; }
.fs-12  { font-size: 12px; }
.fs-14  { font-size: 14px; }
.fs-16  { font-size: 16px; }
.fs-18  { font-size: 18px; }
.fs-20  { font-size: 20px; }
.fs-22  { font-size: 22px; }
.fs-24  { font-size: 24px; }
.fs-26  { font-size: 26px; }
.fs-28  { font-size: 28px; }
.fs-30  { font-size: 30px; }
.fs-32  { font-size: 32px; }
.fs-34  { font-size: 34px; }
.fs-36  { font-size: 36px; }
.fs-40  { font-size: 40px; }
.fs-45  { font-size: 45px; }
.fs-50  { font-size: 50px; }
.fs-55  { font-size: 55px; }
.fs-60  { font-size: 60px; }
.fs-64  { font-size: 64px; }
.fs-96  { font-size: 96px; }

.fw-300 { font-weight: 300; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }
strong { font-weight: 700!important; }
.carousel-control-prev{
	    margin-left: -10%;
}
.carousel-control-next{
	    margin-right: -10%;
}
a{
	text-decoration: none;
}
a:hover{
	color:#fff;
}
.colorfd{
	color:#666666;
}

.marginbot{
	margin-bottom:-80px;
}

.textblue{
	color:var(--baseblue);
}

.owl-nav{
	width: 110%;
    margin: -18% 0 0 -5%;

}
.carousel-category .owl-nav{
    width: 110%;
    margin: -10% 0 0 -5%;
}
.carousel-category .owl-stage-outer,  .owl-carousel.carousel-category.owl-loaded.owl-drag{
        min-height: 160px;
}
.owl-prev{
	    left: -3%;
    position: absolute;
}
.owl-next{
	right: -3%;
    position: absolute;
}
.jic{
	justify-items:center;
}
.owl-next span{
	font-size: 40px;
    opacity: 0.5;
}
.owl-prev span{
	font-size: 40px;
    opacity: 0.5;
}
.owl-stage-outer, .owl-carousel.owl-loaded.owl-drag{
    min-height: 400px;
}
 
.radius30{
    border-radius: 40px;
}
.radius12{
    border-radius: 12px;
}
.radius10{
    border-radius: 10px;
}
.wcicon{
    width: 40px;
} 
 .butonicon{
    width: 20px;
 }
 .testuser{
    height: 80px;
    width: 80px !important;
    border-radius: 50px;
 }
 .hearticon{
    width: 12px;
 }
 #contact .form-control, .form-select{
    background-color: #FFf0;
    color: #FFF;
 }
 .form-control:focus { 
    background-color: #ffffff;
    border-color: #EF3D3D50;
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .05);
}
.form-select  option:checked {
  color: #fff;
}
.w-40{
    width: 40%;
}
.w-80{
    width: 80%;
}
.w-90{
    width: 90%;
}
.footerbg {
    background: url('../img/dark.webp')no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.linearch {
  position: relative;
  z-index: 1;
}

.linearch::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/linecolor.svg') no-repeat center;
  background-size: 70%;
  opacity: 0.5; /* adjust opacity here */
  z-index: -1;
  pointer-events: none; /* so it doesn't block clicks */
}
.darkbg{
    background: url('../img/dark.webp')no-repeat;
    background-size: cover;
    width: 100%; 
}
.heigh{
    min-height: 400px;
}
footer a{
    color: #ffffff;
}
.socialicon{
    height: 35px;
}
.kattha{
    background-color: #700000;
}
.gradient1{
    background: url('img/redgrad.svg')no-repeat;
    background-size: cover;
     
}
.gradient2{
    background: url('img/multishot.svg')no-repeat;
    background-size: cover;
     
}
.gradient3{
    background: url('img/pack.svg')no-repeat;
    background-size: cover;
    
}
.bghero{
    background: url('../img/herobanner2.webp')no-repeat;
    background-size: 94%  ;
    width: 100%;
    height: 80vh;
    background-position: right bottom;
}
.mtop{
    margin-top: -30px;
}
.colorfad{
    color:#00000031;
}
.ace{
    align-content:flex-end;
}

 
.hidx{
    overflow-x: hidden;
}
.hidxy{
    overflow: hidden;
}
.min600{
    min-height: 600px;
}

 
    .minh400{
        height: 250px;
    }
    .minh400 img{
        height: 250px;
        object-fit: cover;
        object-position: top;
    }
    .bggrad{
        background: #FFDC9C;
background: linear-gradient(171deg, rgba(255, 220, 156, 1) 14%, rgba(255, 241, 201, 1) 50%, rgba(255, 220, 156, 1) 86%);
    }
 
    .greycolor .form-control{
    background-color: #F5F5F5;
}

   
.uppercase{
    text-transform: uppercase;
}
.obj{
    object-fit: contain;
    height: 200px;
}

.w-30px { width: 30px !important; }
.w-35px { width: 35px !important; }
.w-50px { width: 50px !important; }
.w-60px { width: 60px !important; }
.w-65px { width: 65px !important; }

.carousel-brand .owl-stage-outer, .owl-carousel.carousel-brand.owl-loaded.owl-drag {
        min-height: 230px;
}

/*.carousel-brand .owl-nav {
    width: 110%;
    margin: -11% 0 0 -5%;
}*/
 
 .colred{
    color: var(--red);
 }
 .stik{
    position: sticky;
    top: 50px;
 }
 .outln{
    outline: none;
    border: 1px solid #0005;
 }

 .btn-lights{
    background: #D9D9D9;
 }
  .btn-lights2{
    background: #6f6f6f55;
 }
  .btn-lights:hover{
    background: #d9d9d9ab;
 }
 .lh-2{
    line-height: 200%;
 }

 #marqueeContainer {
    position: relative;
    overflow: hidden;
    height: 180px; /* adjust as needed */
  }

  .marquee-line {
    position: absolute;
    white-space: nowrap;
    animation: scroll-left 45s linear forwards;
    font-size: 128px;
    font-weight: 100;
    color: #DEDEDF13;
    font-family: "Quicksand", sans-serif;
  }

  @keyframes scroll-left {
    from {
      left: 100%;
    }
    to {
      left: -100%;
    }
  }
  hr { 
    border-top: 1px solid #ffffff70;
}
.darkline{
    border-top: 1px solid #00000070;
}
.form-select.cta{
    color: #7a7a7a;
}

/*button css*/
.c-btn {
  all: unset;
  cursor: pointer;
  font-size: 16px;
  line-height: 1; 
  position: relative;
  transition: color 0.35s ease;

  background: var(--red);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
}
/*.c-btn:hover, .c-btn:focus {
  color: #fff;
}
.c-btn:hover .c-btn__text,
.c-btn:hover .c-btn__arrow, .c-btn:focus .c-btn__text,
.c-btn:focus .c-btn__arrow {
  transform: translate3d(0, 0, 0);
}
.c-btn:hover .c-btn__arrow:before, .c-btn:focus .c-btn__arrow:before {
  transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
}
.c-btn:hover .c-btn__arrow:after, .c-btn:focus .c-btn__arrow:after {
  transition-delay: 0s;
  transition-duration: 0.25s;
  transform: translate3d(0, -50%, 0) scale3d(1, 0, 1) rotate(-45deg);
}*/

.c-btn__text {
  display: inline-block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.55, 0, 0, 1);
  transform: translate3d(-10%, 0, 0);
  z-index: 1;
}

.c-btn__arrow {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.55, 0, 0, 1);
  transform: translate3d(10%, 0, 0);
  top: 0;
  width: 100%;
}
.c-btn__arrow:before, .c-btn__arrow:after {
  content: "";
    display: inline-block;
    position: absolute;
    right: 35px;
    top: 50%;
}
.c-btn__arrow:before {
    background-color: #fff;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.55, 0, 0, 1);
    transform: translate3d(0, -50%, 0) scale3d(0.2, 0.05, 1);
    transform-origin: right center;
    width: 48%;
    border-radius: 3px;
}
.c-btn__arrow:after {
 border: solid #FFF;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transition: transform 0.375s 0.125s cubic-bezier(0.55, 0, 0, 0.95);
    transform: translate3d(0, -50%, 0) scale3d(1, 1, 1) rotate(-45deg);
}

/*button css*/


.architecture{
    font-size: 170px;
    font-weight: 300;
    text-align: center;
    color:#4544446e;
}

.why {
  background: linear-gradient(to bottom, #454444ab, #45444494, #45444478, #4544440f, #ffffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: fit-content;
  opacity: 0.2;
  line-height: 1;
}

a{
    color:#ffffff;
}
.w-16px{
    width: 10px;
    height: 8px;
}
 
 .vrr:before{
    content: "";
    background: url('../img/vr.svg')no-repeat;
    background-size: contain;
    width: 2px;
    height: 80%;
    position: absolute;
    top: 10%;
    right: 0;
 }
 .w-330px{
    max-width: 330px;
 }
 .abs{
    position: absolute;
    top: -50%;
    right: 0;
 }
 .w-70{
    width: 70%;
 }
 .cta.abs {
        position: absolute;
    top: -17%;
    right: 0px;
    width: 60%;
}
.enq{
        z-index: 1;
    position: absolute;
    top: -9%;
    right: 8%;
}
.innershadow{
    box-shadow: rgb(207 207 207) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    background: #ffffff;
    border:0;
}
#services2 .c-btn__arrow:before {
    height: 27px;
}
.vrr2:before {
    content: "";
    background: url(../img/vr.svg) no-repeat;
    background-size: contain;
    width: 2px;
    height: 60%;
    position: absolute;
    top: 20%;
    right: 9%;
    filter: invert(1);
}
 .mbminus{
    margin-bottom: -30px;
 }
 .gre{
    background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(255 227 201) 100%);
 }
 .mtopper{
        margin-top: -65%;
 }
 .mtopper2{
        margin-top: -90%;
 }
 .minht{
    min-height: 95px; 
 }
 .ghar:before{
    content: "";
    background: url('../img/linearchitect.webp')no-repeat;
    background-size: contain;
    width: 60%; 
    height: 60%;
    position: absolute;
    left: 20%;
    top: 20%;
    z-index: 0;
}
.minhight{
    height: 450px;
    object-fit: cover;
}
.alig{
    bottom: 0;
    background: #00000038;
    width: 100%;
    height: 50px;
}
.colr{
    color:#ebebeb;
}
.carousel-brand .owl-stage-outer{
        align-content: center;
}

.carousel-brand .owl-nav {
    margin-top: -11% !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #00000000!important;
    color: #B22222!important;
    text-decoration: none;
}
#project h3{
    font-size:1rem;
}


/*testimonial */
.testimonial-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  gap: 15px;
}

.owl-carousel .testimonial-item {
  padding: 30px 20px;
  background: #0000;
  border-radius: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev, .custom-next {
  background: #0000;
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.owl-carousel .fadeInTopCustom {
  animation: fadeInTop 1s both 0.50s;
}
.owl-carousel .fadeOutUpCustom {
  animation: fadeOutUp 1s both;
}

@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

/*testimonial*/



.testimonial-section .owl-stage-outer, .testimonial-section .owl-carousel.owl-loaded.owl-drag {
    min-height: 280px;
}

#testimonial:before{
    content: "";
    background: url(../img/testibuilding.svg) no-repeat;
    background-size: contain;
    width: 500px;
    height: 500px;
    position: absolute;
    top: 8%;
    left: 33%;
    z-index: 0;
} 
.testimonial-controls{
    font-weight: 500;
}
.accordion-button:focus{
    box-shadow:0 0 0 0.15rem rgb(255 196 196 / 25%);
}
.accordion-button:not(.collapsed){
        background-color: #fff2f2;
}
.accordion-button:not(.collapsed) {
    color: #000000;
}
.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='%23ff0000'%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");
}

.bgg:after{
    content: "";
    background: url(../img/linearchitect2.webp) no-repeat;
    background-size: contain;
    width: 50%;
    height: 280px;
    bottom: 0px;
    left: 0;
    position: absolute;
    z-index: 0;
}
h2.fs-40{
    color: #B22222;
    font-weight:700;
}
footer h2.fs-40{
    color: #ffffff;
    font-weight:700;
}
.red{
    color: #B22222;
}

.extra {
      display: none;
    }

.show .extra {
      display: block;
    }
.redcursor{
    color: #B22222;
    cursor:pointer;
}
.wcicons{
    width:40px;
}

.whatsapp-float {
  position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 1000;
    width: 40px;
    height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center; 
    transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
}


.book-float{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 180px;
    height: 36px;
    z-index: 1000;
    border-radius: 50px;
    /*border: 1px solid red;*/
    background: #B22222;
    display: flex;
    justify-content: center;
    align-items: center; 
      transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.book-float:hover {
    transform: scale(1.1);
}
.book-float img {
    width: 25px;
    height: 25px;
}
.scroll-hide {
  opacity: 0;
  visibility: hidden;
}



/*.vibrate-1 {*/
/*    -webkit-animation: gradientbtn 3s linear infinite both;*/
/*            animation: gradientbtn 3s linear infinite both;*/
/*}*/
 
 
 
 /**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
 
 .vibrate-1, .book-float, .buttons  {
  background: linear-gradient(270deg, #B22222, #4F0000, #B22222, #4F0000);
  background-size: 600% 600%;
  animation: gradientAnimation 3s alternate infinite;
  /*color: white;*/
  /*padding: 10px 20px;*/
  /*border: none;*/
  /*border-radius: 5px;*/
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  /*50% {*/
  /*  background-position: 100% 50%;*/
  /*}*/
  100% {
    background-position: 100% 50%;
  }
}

@-webkit-keyframes gradientbtn {
  0% {
        background: #B22222;
    background: linear-gradient(90deg, rgba(178, 34, 34, 1) 0%, rgba(79, 0, 0, 1) 100%);
  }
  50% {
        background: #4F0000;
    background: linear-gradient(90deg, rgba(79, 0, 0, 1) 0%, rgba(178, 34, 34, 1) 100%);
  }
  100% {
    background: #B22222;
    background: linear-gradient(90deg, rgba(178, 34, 34, 1) 0%, rgba(79, 0, 0, 1) 100%);
  }
}  


/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.btn-clos2{
        margin: -10px -10px 0 0;
        position: absolute;
        align-self: end;
        border: none;
        font-size: 20px;
        color: #b1b1b1;
        background: transparent;
        transition: 0.35s linear;
    }
    .btn-clos2:hover{
      transition: 0.35s linear;
      font-size: 24px;
    }
.modal-content{
     border:none;
 }
   .modal .form-control{
      margin-bottom: 20px;
      /*border: 1px solid #ED3237;*/
      
    }
    .btn-clos{
      margin: 5px 5px 0 0;
      position: absolute;
      align-self: end;
      border: none;
      font-size: 24px;
      color: var(--red);
      background: transparent;
      transition: 0.35s linear;
    }
    .btn-clos:hover{
      transition: 0.35s linear;
      font-size: 26px;
    }
   #contact .modal .form-control:focus {
      color: #11335a;
      background-color: #fff;
      /*border-color:  #ED3237;*/
      outline: 0;
      box-shadow: 0 0 0 .15rem #ED323766;
}
 
form button{
        border: none;
    background: transparent;
}
.su select{
        width: -webkit-fill-available;
    padding: 8px;
    /*border: 1px solid #ED3237;*/
    border-radius: 3px;
} 
.su select:focus{
    outline: none;
    border-color: #B22222;
    outline: 0;
    box-shadow: 0 0 0 .15rem rgb(255 0 0 / 25%);
}

.w-100px{
    width:100px;
    height: fit-content;
}


    .video-section {
      display: flex;
      flex-direction: row;
      height: 80vh;
    }

    .video-list {
      width: 30%;
      background-color: #fff;
      padding: 15px;
      overflow-y: auto;  
    }

    .video-list-item {
      cursor: pointer;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 5px;
      background-color: white;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .video-list-item:hover {
      background-color: #e0e0e0;
    }

    .video-player {
      width: 70%;
      display: flex;
      /*align-items: center;*/
      justify-content: center;
      background-color: #fff;
    }

    .video-player iframe {
      width: 90%;
      height: 80%;
      border: none;
      border-radius: 30px;
    }

    /* 🔻 Mobile responsive: stack layout vertically */
    @media (max-width: 768px) {
      .video-section {
        flex-direction: column;
      }
.owl-stage-outer, .owl-carousel.owl-loaded.owl-drag{
    min-height: 450px!important;
}
      .video-player {
        width: 100%;
        height: 50vh;
      }

      .video-player iframe {
        width: 100%;
        height: 100%;
        border-radius: 0;
      }

      .video-list {
        width: 100%;
        height: 50vh;
        border-right: none; 
        overflow-y: auto;
      }
    }



.c-btn__arrow {
	-webkit-animation: blink-1 2.5s infinite both;
	        animation: blink-1 2.5s infinite both;
}

/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}























h2 .fa-indian-rupee-sign{
    font-size:28px;
}
.lh13{
    line-height: 1.3;
}






/*media max-width:767.99px*/
@media (max-width: 767.98px) {
    .logo {
    width: 80px;
}
.enq{
    right:0;
}
    .architecture {
    font-size: 40px;
    color: #4544449c;
    font-weight: 600;
    position: absolute;
    bottom: 0px;
    left: 10%;
}
.lh15{
    line-height: 1.5;
}
.mf-10{
    font-size: 10px;
}
.mf-11{
    font-size: 11px;
}
.mf-12{
    font-size: 12px;
}
.mf-13{
    font-size: 13px;
}
.mf-14{
    font-size: 14px;
}
.mf-15{
    font-size: 15px;
}
.mf-16{
    font-size: 16px;
}
.mf-18{
    font-size: 18px;
}
.mf-20{
    font-size: 20px;
}
.mf-22{
    font-size: 22px;
}
.mf-21{
    font-size: 21px;
}
.mf-24{
    font-size: 24px;
}
.mf-28{
    font-size: 28px;
}
.mf-30{
    font-size: 30px;
}
.mf-32{
    font-size: 32px;
}
.bghero {
    background-size: 162%;
}
 
 .linearch::after {
    background-size: 100%;
    z-index: -2;
}
.wm-100{
    width: 100% !important;
}
.wm-50px {
    width: 50px !important;
}
.od2{
    order: 2;
}
.mbgwhite{
    background-color: #fff0;
}
.mobilecard{
    background: #ffffff;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    box-shadow: inset 0 0 19px 13px rgba(0, 0, 0, 0.1);
}
.vrr2:before{
    width: 0px;
}

.enq{ 
    position: relative;
}

.animated-path {
  stroke-dasharray: 3, 5;
  stroke-dashoffset: 1000;
  /*animation: draw 100s linear forwards infinite;*/
  height: 1000px;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.ar{
    left: 19%;
    top: 19%;
    height: 500px;
    z-index: -1;
}
.ar svg{ 
    height: 84%;
}
.direc{
    left: 20px;
    top: 12%;
    height: 1506px;
    z-index: -1;
}
 .direc   svg{
    height: 2000px;
    width: 100%;
}
.bgg:after{
    width: 0;
}
.mf-14{
    font-size: 14px;
}
.darkbg {
    background: #454444;
}

  .carousel-project .owl-stage-outer, .carousel-project.owl-loaded.owl-drag,
.carousel-brand, .carousel-brand .owl-stage-outer, .carousel-brand.owl-loaded.owl-drag
{
    height: 100px;
    min-height: 100px !important;
    
}
    .minhight {
        height: auto !important;
        object-fit: contain;
        padding: 0 1rem;
    }
    .carousel-mobileproject .item a{
        display:flex;
            flex-direction: column;
    }
.alig{
    height: 30px;
        background: #ffffff;
    color: #000;
}
.colr{
    color:#ffffff;
}
 .bodr{
    margin-top: 1rem;
    border-top: 1px solid #0000001f;
    border-bottom: 1px solid #0000001f;
 }

#testimonial:before {
    content: "";
    background: url(../img/testibuilding.svg) no-repeat;
    background-size: contain;
    width: 80%;
    height: 300px;
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 0;
}

.testbackimges{
    background: url(../img/test.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.testbackimges::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Adjust darkness */
  z-index: 1;
}
.colorfd{
    color: #ffffff;
}

.bdr20{
        border-radius: 20px;
        margin-top: -40px;
        box-shadow: rgba(0, 0, 0, 0.7) 0px 5px 13px !important;
}

.pxxx{
    padding: 0 0.25rem;
}
.marquee-line {
    animation: scroll-left 24s linear forwards;
    font-size: 50px;
    color: #dededf3b;
}

#marqueeContainer {
    height: 60px;
}
.jcc{
    justify-content: center!important;
}
 
.mw-75{
    width: 75%!important;
}

.bghero{
    height: 80vh!important;
    position:relative;
}
 
#navbar a{
        margin-left: 0;
}
.w-330px {
    max-width: 100%!important;
}
#project .darkback{
    margin-top:1rem;
}




}
/*media max-width:767.99px*/