 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

body{
    font-family: 'Poppins', sans-serif !important;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}
p{
    margin: 0;
}
img{
    max-width: 100%;
    object-fit: cover;
}
ul{
    list-style: none;
    margin: 0;
}
a{
    text-decoration: none !important;
    transition: all .5s !important;
}




header {
    background-color: #06316ed4 !important;
    position: relative;
    z-index: 99;
    height: 98px;
}
header nav.navbar {
    padding: 12px 0;
}
header a.navbar-brand img {
    width: 200px;
    max-width: 100%;
    object-fit: cover;
}
div#navbarSupportedContent ul.navbar-nav {
    align-items: center;
}
div#navbarSupportedContent ul.navbar-nav li.nav-item a.setbtn {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins';
    padding: 10px 18px;
    font-weight: 600;
    letter-spacing: 2px;
}
div#navbarSupportedContent ul.navbar-nav li.nav-item a.setbtn:hover {
    background: #ffcc26;
    color: #ffffff !important;
    border: 2px solid #ffcc26;
}
div#navbarSupportedContent ul.navbar-nav li.nav-item a {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    font-family: 'Poppins';
    cursor: pointer;
    text-transform: uppercase;
}
div#navbarSupportedContent ul.navbar-nav li.dropdown-submenu ul.dropdown-menu>li>a {
    color: #000000;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    cursor: pointer;
    text-transform: uppercase;
    padding: 3px 5px!important;
}

div#navbarSupportedContent ul.navbar-nav li.nav-item {
    padding: 5px 20px;
}

div#navbarSupportedContent ul.navbar-nav li.nav-item a:hover {
    color: #ffcc26 !important;
}

div#navbarSupportedContent ul.dropdown-menu li a.dropdown-item{
    position: relative;
}
div#navbarSupportedContent ul.navbar-nav li.dropdown-submenu ul.dropdown-menu>li>a :hover:before{
    opacity: 1;
    -webkit-transform: translateY(-5px) translateZ(0);
    transform: translateY(-5px) translateZ(0);
}
div#navbarSupportedContent ul.navbar-nav li.dropdown-submenu ul.dropdown-menu>li {
    padding: 2px 15px !important;
    letter-spacing: inherit !important;
}
.dropdown-toggle::after {
    display: inline-block;
    /* margin-left: .255em; */
      vertical-align: top;
      content: "";
      border-top: none !important; 
      border-right: none !important;
      border-bottom:none !important;
      border-left: .1em solid transparent ;
      content: "\f107";
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
}








/*sticky header position*/
.sticky.is-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position: relative;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}
.dropdown-submenu>.dropdown-menu {
    top: 40px;
    left: 0;
    margin-top: 0px;
}




.dropdown-toggle::after {
    margin-left: 0.4em;
}
.dropdown-item {
    padding: 5px 10px !important;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: transparent;
}

/* ************************** */

section.slider_sec {
    overflow: hidden;
    margin-top: -98px;
}



.slider-container {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	height: 100vh;
	width: 100vw;
}


.slider-container::after {
	background-color: #000;
	content: '';
	position: absolute;
	opacity: 0.6;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	transform: scale(1.15);
	transition: opacity .6s ease;
}

.slide:nth-of-type(odd).active {
	animation: grow 5s linear forwards;
}
.slide:nth-of-type(even).active {
	animation: growOut 5s linear forwards;
}
@keyframes grow {
	0% {
		transform: scale(1);
		opacity: 0;
	}
	20% {
		transform: scale(1.05);
		opacity: 0.7;
	}
	50%{
		opacity: 1;
	}
	75% {
		transform: scale(1.10);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.15);
		opacity: 0;
	}
}
@keyframes growOut {
	0% {
		opacity: 0;
		transform: scale(1.15);
	}
	 20% {
		opacity: 0.7;
		transform: scale(1.10);
	}
		50%{
		opacity: 1;
	}
	75%{
		transform: scale(1.05);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}




/* .controls-container {
    position: absolute;
    left: 50%;
    bottom: 30px;
    display: flex;
    z-index: 2;
} */
.controls-container {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 2;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.control.active, .control:hover {
    background-color: #06316ed4;
    opacity: 1;
    transform: scale(1.2);  
}

/* *************************** */


.slider-container h1 {
    color: #fff;
    font-size: 70px;
    letter-spacing: 5px;
    position: relative;
    z-index: 100;
    text-align: center;
    FONT-WEIGHT: 700;
}

 /* .animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ffcc26 67%,
    #fff800 100%
  );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text; */
    /* text-fill-color: transparent; */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 5s linear infinite;
    display: inline-block;
    font-size: 190px;
} 

 @keyframes textclip {
  to {
    background-position: 200% center;
  }
}  */

.control {
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    margin: 6px;
    height: 13px;
    width: 13px;
    transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
    border-radius: 50%;
}



section.aboutus {
    padding: 50px 0;
}

section.aboutus  .abt_details h6 {
    color: #f5b324;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins';
}
section.aboutus .abt_details h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 20px;
}

section.aboutus  .abt_details p {
    font-size: 17px;
    line-height: 28px;
    font-family: 'Poppins';
    padding: 0 45px 0 0;
    color: #3e3e3e;
}


/* ************************************************** */

section.Services {
    padding: 20px 0px;
}
.Services .card {
    margin: auto;
    min-height: 350px;
    perspective: 800px;
    cursor: pointer;
}

.Services .card-wrapper {
    background-position: center;
    padding: 1rem 1rem;
    background-size: cover;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform-origin: top;
    position: relative;
    overflow: hidden;
}

.Services .card1 {
    background-image: url("../images/downtownseva.png");
    z-index: 4;
    transform: rotateY(15deg);
}
.Services .card2 {
    background-image: url("../images/turban_up.jpg");
    z-index: 3;
}
.Services .card3 {
    background-image: url("../images/community.jpg");
    z-index: 3;
    transform: rotateY(-15deg);
}
.card-wrapper {
    flex: 1;
}
.card {
    background-color: transparent;
    border: none;
}

.Services .card-wrapper:before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(190deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 90%);
    clip-path: polygon(0 0, 100% 0, 100% 25%, 0 75%);
    opacity: 0;
    position: absolute;
    transition: all 0.3s;
    transform: translateY(-100%);
}
.Services .card-box {
    z-index: 10;
    position: relative;
    width: 100%;
}

.Services h5 {
    margin: 0;
    font-size: 26px;
    font-family: 'Poppins';
    color: #ffffff;
}
.card-box h5 a {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
}
.display-4 {
    font-family: 'Poppins';
    font-size: 1.1rem;
    line-height: 1.4;
}
.Services .card-wrapper:hover {
    transform: rotateX(20deg);
}


.Services .card-wrapper:hover:before {
    transform: translateY(-10%);
    opacity: 1;
}










/* ********************** */

.titlehead {
    text-align: center;
    padding: 40px 0px 30px 0;
}
.titlehead h2{
    color: #f7911d;
    font-family: 'Poppins';
    margin-bottom: 20px;
    font-size: 35px;
}
.titlehead p {
    margin: 10px 0;
    font-size: 17px;
    font-family: 'Poppins';
    color: #8d8686;
}
.cardsec {
    position: relative;
    border-bottom: 12px solid #ffd2a4;
}
.image {
    overflow: hidden;
}
.cardsec .image h3.title {
    position: absolute;
    top: 50%;
    color: #000;
    z-index: 999;
    width: 100%;
    text-align: center;
}
.box {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* .social img {
    position: relative;
}
p.setpos {
    position: absolute;
    bottom: 60px;
    left: 40px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins';
} */



.box:hover img{
    transform: scale(1.1);
}
.box img {
    width: 100%;
	transition: 0.4s;
}

  .border-top {
    border-top: 4px solid #ba55d3;
  }
  .cardsec:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(6 49 110 / 65%);
    opacity: 0;
}
.cardsec .image h3.title a {
    color: #ffffff;
    font-size: 26px;
    font-family: 'Poppins';
    cursor: pointer;
    text-decoration: none;
}
.cardsec:hover:before{
    opacity: 1;
}



section.highlight_sec {
    padding: 60px 0;
}

/* ************* */

section.devlopment .txt p {
    font-size: 17px;
    word-break: break-all;
    color: #8d8686;
}
section.devlopment .txt h2 {
    font-size: 35px;
    font-family: 'Poppins';
    text-transform: uppercase;
    color: #f7911d;
}

section.devlopment .txt h2 span.devside {
    padding-left: 55px;
}



section.devlopment {
    overflow: hidden;
    background: #f1f2f2;
    padding: 50px 0;
}
.devinfo {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}
.devinfo a {
    text-align: center;
    display: block;
    padding: 35px 0 10px 0;
    font-family: 'Poppins';
    cursor: pointer;
    font-size: 19px;
    color: #012d68;
    text-transform: uppercase;
}

.sikhimg img {
    border-radius: 10px;
    opacity: 1;
    transition: .3s ease-in-out;
}
.sikhimg {
    min-height: 240px;
    display: flex;
}

.figure:hover img {
    opacity: .5;
}
.figure {
    background: #f7911d;
    border-radius: 10px;
}


/* **************** */
section.booking {
    padding: 80px 0 100px 0;
    background: #0e2646;
    position: relative;
}

section.booking .potimgs {
    position: absolute;
    width: 100%;
    overflow: hidden;
}
section.booking img.right {
    position: absolute;
    right: 0;
}
section.booking .potimgs img {      
    width: 20%;
    max-width: 100%;
    object-fit: cover;
}
section.booking .bkSpkr {
    text-align: center;
    max-width: 780px;
    margin: 20px auto auto;
    word-break: break-all;
}
section.booking .bkSpkr h2 {
    margin-bottom: 25px;
    font-size: 40px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #fff;
}
section.booking .bkSpkr p {
    margin-bottom: 25px;
    font-size:20px;
    color: #fff;
}
section.booking .bkSpkr a {
    display: inline-block;
    color: #f7915f;
    padding: 10px 25px;
    background: #fff;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 18px;
    transition: all .5s;
}
section.booking .bkSpkr a:hover {
    background: #ffcc26;
    color: #ffffff;
}   



/* ***************Footer*************** */

footer {
    background: #1a1919;
    padding: 60px 0 0px 0;
}
footer ul li a {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
    cursor: pointer;
    display: inline-block;
}
.fcommon ul li {
    margin-bottom: 15px;
  
}
.fcommon ul{
    padding: 0;
}

.decwidh ul.social {
    display: flex;
    gap: 15px;
}

.decwidh ul.social li.comn{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.decwidh ul.social li.frst {
    background: #3b5998;
}
.decwidh ul.social li.sec {
    background: #1da1f2;
}
.decwidh ul.social li.thrd{
    background: #cd201f;
}
.decwidh ul.social li.for{
    background: #bd081c;
}

.fcommon>ul>li>a:hover {
    color: #ffcc26;
}




.fcommon h4 {
    color: #fff;
    margin-bottom: 25px;
}   
.flogo p {
    color: #fff;
    margin-top: 30px;
    line-height: 30px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}
.flogo {
    margin-top: 40px;
}
.fcommon ul li i {
    color: #fff;
    display: inline;
}

.fcommon form input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 10px;
    border: 0;
    outline: none;
}
.fcommon form input[type="submit"] {
    margin-top: 20px;
    width: 100%;
    display: inline-block;
    font-size: 16px;
    background: #ffcc26;
    font-family: 'Poppins';
    font-weight: 600;
    cursor: pointer;
}

footer ul.info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
footer ul.info li i {
    font-size: 18px;
    color: #fbf2ebdb;
}

.con {
    position: relative;
    z-index: 9999999;
    font-size: 20px;
    color: #ff00fd;
}

.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }


  /* *******about-us****** */
  .main {
    background: url("../images/about_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
  .main-bner h4 {
    text-align: center;
    color: #f7911d;
    font-family: 'Poppins';
    letter-spacing: 1px;
    font-size: 50px;
    font-weight: 700;
}
.main:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    z-index: -999;
    width: 100%;
    height: 100%;
    background-color: rgba(17,19,43,0.6);
}
section.about-sec {
    padding: 50px 0;
}
.abt-left-img img {
    border-radius: 10px;
    aspect-ratio: 4/4;
    width: 100%;
}
.abt-detail {
    padding: 0 25px;
}
.abt-detail p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 25px;
    font-family: 'Poppins';
    color: #373737;
}
.abt-detail b {
    font-size: 16px;
    line-height: 28px;
    margin-top: 25px;
    font-family: 'Poppins';
    color: #373737;
}
.abt-detail ul li {
    font-size: 16px;
    line-height: 28px;
    margin-top: 25px;
    font-family: 'Poppins';
    color: #373737;
}
.abt-detail h6 {
    font-family: 'Poppins';
    font-size: 40px;
    color: #373131;
    font-weight: bold;
    margin: 0px 0 15px 0;
}
section.about-sec  .abt_images img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/5;
    transition: 0.4s;
    border-radius: 5px;
}
section.about-sec .abt_images {
    overflow: hidden;
    border-radius: 5px;
}
.abt_images:hover img {
    transform: scale(1.1);
    border-radius: 5px;
}

/* ************contact *************** */

section.contact {
    padding: 0 0 40px 0;
    margin-top: -200px;
    background: #fffff5;
}
section.contact .contact-inner {
    padding: 40px 0;
}
section.contact .contact-inner .contact-lft-bx, .contact-rht-bx {
    background: #fff;
    border: 1px solid #e1e1e1;
    min-height: 400px;
    padding: 40px 25px 0px;
}
section.contact .contact-inner .contact-lft-bx h5 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 26px;
    font-weight: 600;
    color: #000;
}
section.contact .contact-inner .contact-lft-bx ul {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}
section.contact .contact-inner .contact-lft-bx ul li {
    border-top: 1px solid #e1e1e1;
    padding: 30px 0;
}
section.contact .contact-inner .contact-lft-bx ul li a {
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    word-break: break-all;
}
section.contact .contact-inner .contact-lft-bx ul li a span {
    width: 45px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edeceb;
    border-radius: 100%;
    flex: 0 0 16%;
}
section.contact .contact-inner .contact-lft-bx ul li a span i {
    font-size: 23px;
    margin: 0;
    color: #f7911d;
}


section.contact .contact-inner .contact-lft-bx .head {
    padding-left: 15px;
}
section.contact .contact-inner .contact-lft-bx h5 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 26px;
    font-weight: 600;
    color: #000;
}
section.contact .contact-inner .contact-lft-bx p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    color: #333;
}
section.contact .contact-inner .contact-lft-bx form {
    margin: 12px 0 21px;
}
section.contact .contact-inner .contact-lft-bx form input, textarea, select {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    padding: 16px 12px;
    color: #000;
    background: rgb(247 145 29 / 8%);
    border-radius: 5px;
    font-size: 16px;
}
/* section.quote-sec .contact-lft-bx input, textarea, select {
    background: rgb(247 145 29 / 8%);
} */
.g-recaptcha {
    transform: scale(0.84);
    transform-origin: 0 0;
}
section.contact .contact-inner .contact-lft-bx form button {
    display: block;
    background: #f7911d;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    max-width: 100%;
    border-radius: 3px;
    transition: .3s;
    margin: 2px 0 0 5px;
    padding: 10px 40px;
}
section.quote-sec .contact-lft-bx textarea#msg {
    display: inline-block;
    width: 100%;
    line-height: 1.4em;
    outline: none;
    padding: 10px;
    height: 70px;
}
::placeholder {
    color:rgb(0, 0, 0);
  }


  /* *********activies******************* */
  
  section.activies {
    background-color: #F5F2F0;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 0px 80px 0px;
}



section.activies .headcnter {
    text-align: center;
    margin: 0 0 30px 0;
}

.actevent{
    position: relative;
}
.actevent:before{
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    -webkit-transition: height 0.5s ease-out;
    transition: height 0.5s ease-out;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, transparent), to(#d77611));
    background-image: linear-gradient(to bottom, transparent 42%, #d77611 100%);
}
.actevent img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
}
.feature-bottom {
    padding: 30px;
    text-align: left;
    z-index: 1;
    bottom: 0;
    position: absolute;
    right: 0;
    left: 0;
}
.feature-bottom p {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    display: none;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
}
.feature-bottom h3 {
    font-size: 19px;
    text-transform: uppercase;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-out 0s;
}
.actevent:hover.actevent:before {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(19%, transparent), to(#000));
    background-image: linear-gradient(to bottom, transparent 19%, #000 100%);
    transition: all 0.3s ease-out 0s;
}
.actevent:hover .feature-bottom h3 {
    background: #ddb216a1;
    padding: 5px;
    transition: all 0.3s ease-out 0s;
}
.actevent:hover p {
    display: block;
    display: -webkit-box;
    transition: all 0.3s ease-out 0s;
}
.feature-bottom a {
    color: #ffffff;
    font-size: 22px;
    font-family: 'Poppins';
}
section.activies .headcnter h4 {
    font-size: 16px;
    color: #f7911d;
    font-family: 'Poppins';
    font-weight: 600;
}
.headcnter p {
    font-size: 40px;
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 50px;
}
.footer_bottom {
    background: #0e2646;
    text-align: center;
    padding: 10px 0; 
}
.footer_bottom .copyright p {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins';
}

/* *********Responsive*********** */

@media(max-width: 767px)
{
    header nav.navbar {
        padding: 12px 10px;
    }
    .slider-container h1 {
        font-size: 25px;
        margin-top: 50px;
    }
    header a.navbar-brand img {
        width: 150px;
    }
    header {
        height: auto !important;
    }
    nav.navbar .navbar-toggler {
        padding: 2px 4px;
        font-size: 14px;
        line-height: 1;
        background-color: #ffdf16!important;
        border: 1px solid #e6be2d!important;
        border-radius: 2px;
    }
    div#navbarSupportedContent ul.navbar-nav li.dropdown-submenu ul.dropdown-menu>li {
        padding: 0 !important;
        letter-spacing: inherit !important;
    }
    div#navbarSupportedContent ul.navbar-nav li.nav-item {
        padding: 2px 10px;
    }
    div#navbarSupportedContent ul.navbar-nav li.nav-item a {
        padding-bottom: 0;
        font-size: 14px;
        padding: 2px 0 !important;
    }
    .slider-container {
        height: 60vh;
    }
    .controls-container {
        bottom: 15px;
        transform: inherit;
    }
    section.slider_sec {
        margin-top: 0px;
    }
    section.aboutus {
        padding: 20px 0;
    }
    .navbar-light .navbar-toggler-icon {
        filter: invert(16%) sepia(26%) saturate(5563%) hue-rotate(151deg) brightness(98%) contrast(99%);
    }
    section.aboutus .abt_details {
        text-align: center;
        margin-top: 30px;
    }
    section.aboutus  .abt_details p {
        font-size: 14px;
        line-height: normal;
        padding: 0 0px 0 0;
    }
    section.aboutus .abt_details h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    section.devlopment {
        padding: 0px 0;
    }
    section.devlopment .txt h2 {
        font-size: 25px;
        text-align: center;
        margin-bottom: 10px;
    }
    section.devlopment .txt p {
        text-align: center;
        font-size: 14px;
        color: #766e6e;
        margin-bottom: 20px;
    }
    .devinfo a {
        padding: 15px 0 10px 0;
        font-size: 16px;
    }
    .devinfo {
        padding: 15px 15px 5px 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    section.Services {
        padding: 15px 0px;
    }
    .titlehead {
        padding: 0px 0px 0px 0;
    }
    .Services .titlehead h2 {
        margin-bottom: 10px;
        font-size: 25px;
        text-transform: uppercase;
    }
    .titlehead p {
        margin: 10px 0;
        font-size: 15px;
    }
    .Services .card {
        perspective: inherit;
        cursor: pointer;
        margin-bottom: 15px;
    }
    .Services h5 {
        font-size: 22px;
    }
    .titlehead h2 {
        margin-bottom: 15px;
        font-size: 25px;
    }
    section.highlight_sec {
        padding: 0px 0;
    }
    section.booking {
        padding: 20px 0 25px 0;
    }
    section.booking .bkSpkr p {
        margin-bottom: 10px;
        font-size: 16px;
        text-align: center;
    }
    section.booking .bkSpkr h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }
    section.booking .bkSpkr a {
        padding: 5px 10px;
        border-radius: 3px;
        margin-top: 5px;
        font-size: 14px;
    }
    footer {
        background: #1a1919;
        padding: 0px 0 10px 0;
    }
    .flogo {
        margin-top: 25px;
        margin-bottom: 15px;
    }
    section.booking .potimgs {
        top: 50%;
        transform: translateY(-50%);
    }
    footer .fcommon h4 {
        color: #fff;
        margin-bottom: 10px;
    }
    footer .fcommon ul li {
        margin-bottom: 10px;
    }
    footer ul.info li {
        margin-bottom: 10px;
    }
    footer .decwidh ul.social {
        gap: 5px;
    }
    .decwidh ul.social li.comn {
        height: 30px;
        width: 30px;
    }
    .fcommon form input[type="submit"] {
        margin-top: 10px;
    }
    .sticky-wrapper {
        height: auto !important;
    }
    .Services .card1 {
        background-image: url("../images/downtownseva.png");
         z-index: 4; 
        transform: inherit;
    }
    .Services .card-wrapper:hover {
        transform: inherit;
    }
    footer .fcommon h4 {
        text-transform: uppercase;
        font-size: 20px;
    }
    footer ul li a { 
        font-size: 14px;
    }
    .fcommon form input {
        font-size: 14px;
        padding: 5px 10px;
    }
    .main-bner h4 {
        font-size: 22px;
    }
    .main {
        min-height: 280px;
    }
    .main-bner {
        margin-top: 60px;
    }
    section.about-sec {
        padding: 20px 0;
    }.abt-left-img img {
        border-radius: 5px;
    }
    .abt-detail h6 {
        font-size: 20px;
        margin: 15px 0 10px 0;
    }
    .abt-detail p {
        font-size: 14px;
        line-height: normal;
        margin-top: 0px; 
    }
    .abt-detail {
        padding: 0;
        margin-bottom: 15px;
    }
    section.about-sec .abt_images {
        margin-bottom: 15px;
    }
    .flogo p {
        margin-top: 20px;
        font-size: 14px;
        font-family: 'Poppins';
        line-height: normal;
    }
    .dropdown-submenu {
        display: block;
        text-align: center;
    }
    .navbar-nav .dropdown-menu {
        text-align: center;
    }
    section.contact .contact-inner .contact-lft-bx form input, textarea, select {
        padding: 10px 10px;
        font-size: 14px;
    }
    section.contact .contact-inner .contact-lft-bx, .contact-rht-bx {
        padding: 10px 5px 0px;
    }
    section.contact .contact-inner .contact-lft-bx h5 {
        font-size: 20px;
    }
    section.contact .contact-inner .contact-lft-bx ul li {
        padding: 10px 0;
    }
    section.contact .contact-inner .contact-lft-bx ul li a span i {
        font-size: 16px;
    }
    section.contact .contact-inner .contact-lft-bx ul li a span {
        width: 30px;
        height: 30px;
        flex: 0 0 10%;
    }
    section.contact .contact-inner .contact-lft-bx ul li a {
        font-size: 14px;
        gap: 8px;
    }
    section.contact .contact-inner .contact-lft-bx, .contact-rht-bx {
        min-height: auto;
        padding: 10px 5px 0px;
        margin-bottom: 10px;
    }
    section.contact .contact-inner {
         padding: 0px 0; 
    }
    section.contact {
        margin-top: 0px; 
    }
    section.map iframe {
        height: 250px;
    }
    .footer_bottom .copyright p {
        font-size: 12px;
    }
    div#navbarSupportedContent ul.navbar-nav li.dropdown-submenu ul.dropdown-menu>li>a{
        font-size: 14px !important;
    }
}