:root {
	--white: #fff;
	--gray: #D0D0D0;
    --light-gray: #989898;
	--primary: #000000;
    --secondary: #6BA2D5;
	--success: #00A827;
	--info: #36b9cc;
	--warning: #E29A00;
	--danger: #EA0000;
	--light: #f8f9fc;
    --light-dark: #404040;
	--dark: #2D2D2D;
	--border-color: #5F6160; 
    --border-light: #6165682e;
	--bg-light: #fff;
    --bg-dark : #000000;
	--table-border: #F5F5F5;
	--light-primary: #E9E3D5;
    --border-radius : 1.25rem;
    --section-padding: 6.25rem 0;
}

* {
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  *,
  ::after,
  ::before {
      box-sizing: border-box
  }

html {
    scroll-behavior: smooth !important;
}

body {
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "Jaldi", sans-serif !important;
    text-rendering: optimizeLegibility;
    scroll-snap-type: y mandatory;
    color: var(--white) !important;
    background-color: var(--bg-dark) !important;
}
.fw-800 {font-weight: 800 !important;}
.fw-700 {font-weight: 700 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-300 {font-weight: 300 !important;}
.fw-200 {font-weight: 200 !important;}
.fw-100 {font-weight: 100 !important;}

.primary {color: var(--primary) !important;}
.white {color: var(--white) !important;}
.dark {color: var(--dark) !important;}
.dark-bg { background-color: var(--bg-dark) !important;}
.warning {color: var(--warning) !important;}
.light-gray {color: var(--light-gray);}
.gray {color: var(--gray);}
.z-9 {z-index: 9;}
.z-99 {z-index: 99;}
.z-999 {z-index: 999;}

.border-top {border-top: 1px solid #2a2a2a24;}
.border-bottom {border-bottom: 1px solid #2a2a2a24;}
.border-left {border-left: 1px solid #2a2a2a24;}
.border-right {border-right: 1px solid #2a2a2a24;}

h1 {
    font-family: "Poly", serif;
}

a {
    text-decoration: none !important;
    font-size: 1rem;
    color: var(--primary) !important;
}
a:hover {color: var(--primary) !important;}
.lh-normal {line-height: normal;}
p {font-size: 1.3rem; color: var(--gray);}

.card {
    border-radius: 20px !important;
}
.card-body {
    padding: 25px 30px !important;
}
section.page-sec {
    margin-bottom: 50px;
    overflow-x: hidden;
}
.card {
    border-radius: 30px;
}
header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 999;
    /* margin: 0 0 1rem 0; */
    background: #fff;
}
.navbar-brand {
    padding-right: 30px;
    display: block;
}
header.scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: .5rem 0 .5rem 0;
  position: fixed;
}
header.scrolled .logo {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}
header .logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
}
header li.nav-item {
    min-width: 100px;
    text-align: center;
}
header.scrolled .navbar-nav .nav-link {
    font-size: 1.1rem;
}
header.scrolled .navbar-nav .nav-link:hover::after {
    bottom: -5px;
}
button.btn.res-menu {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-pading {
    padding: 3rem 0 ;
}

section.inn-banner h3 { margin-bottom: 0;}
.main-banner {
    padding: 100px 0;
}
section.home-banner {
    padding-top: 100px;
}
.banner-content {
    text-align: start;
    color: #fff;
    width: 90%;
}
.banner-content h1{
    font-size: 5.5rem;
}
.banner-content  p {
    color: var(--light-gray);
    font-size: 1.5rem;
    max-width: 90%;
}
.card.banner-card {
    border-radius: 30px;
    max-width: 80%;
}
.banner-date-sec h1 {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 80px;
}
.banner-upcmg img {
    width: 250px;
    border-radius: 10px;
    object-fit: cover;
}
.navbar-nav .nav-link {
    font-family: "Alegreya Sans", sans-serif;
    color: var(--primary) !important;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.16rem;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    font-weight: 400;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-link.active {color: var(--primary) !important; font-weight: 400;}
.mobile-menu .navbar-nav .nav-link.active {color: var(--primary) !important;}
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
    transition: transform 0.3s ease, color 0.3s ease;
}
 header.scrolled .navbar-nav .nav-link.active::after {bottom: -5px;}
.primary-btn {
    background: var(--white) !important;
    padding: .75rem .75rem .75rem 1.25rem;
    border-radius: 1rem;
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: "Alegreya Sans", sans-serif;
    border: 1px solid var(--white);
    transition: all 0.3s;
    color: var(--primary) !important;
}
.primary-btn span {
    background: var(--white);
    height: 35px;
    width: 35px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-left: 10px;
    transition: all 0.3s;
}
.primary-btn span i {
   transform: rotate(40deg);
   transition: all 0.3s;
}
.primary-btn:hover {
  color: var(--primary) !important;
  background: var(--white) !important;
  transition: all 0.3s;
}
.primary-btn:hover span {
    background-color: var(--primary);
    color: var(--white);
    transition: all 0.3s;
}
.primary-btn:hover i {
   transform: rotate(90deg);
   transition: all 0.3s;
}
.container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.container-xxl {
    max-width: 1700px !important;
}
.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {width: 300px !important;}
.mobile-menu ul.navbar-nav {
    text-align: center;
}
.mobile-menu .navbar-nav .nav-link {
    color: var(--dark) !important;
}

footer {
    background: var(--white);
    color: var(--dark);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
footer h1 {
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 0;
}
img.footer-logo {
    width: 300px;
}
ul.footer-social {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
ul.footer-social li a {
    width: 35px;
    background: var(--primary);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 5px;
    color: var(--white) !important;
    border: 1px solid var(--white);
}
ul.footer-social li a:hover {
    background: transparent;
    color: var(--white) !important;
}
ul.footer-links {
    padding-left: 0;
    list-style: none;
}
ul.footer-links li {
    padding: 5px 0;
}
h2.hd-h2 {
    font-size: 60px;
    font-weight: 300;
    font-family: "Poly", serif;
}
p.hd-p {
    font-size: 1.4rem;
}
a.link.learn-more {
    font-size: 1.1rem;
    position: relative;
    font-weight: 500;
}
a.link.learn-more i {
    transform: rotate(-40deg);
    transition: all 0.3s;
}
a.link.learn-more:hover {
    color: var(--primary) !important;
}
a.link.learn-more:hover i {
     transform: rotate(0deg);
    transition: all 0.3s;
}
a.link.learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
a.link.learn-more:hover::after {
    width: 100%;
}
.copyright-sec {background: var(--primary);}
p.footer-abt {
    max-width: 70%;
}
footer h6 {
    font-size: 1.3rem;
    color: var(--primary);
}
ul.footer-links a {
    font-size: 1rem !important;
    color: var(--primary) !important;
    text-decoration: none;
}
.footer-address span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 50%;
    color: var(--light-dark);
}
.card {border: 1px solid var(--border-light) !important;}
.carousel-item img {
    height: 100vh !important;
    object-fit: cover;
    max-height: calc(100vh - 100px);
}
.carousel-item::before {
    background: rgba(12, 35, 64,0.6);
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.home-banner-cntnt {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 0;
    width: 100%;
    height: 100%;
}

.carousel-control-next, .carousel-control-prev {z-index: 99 !important;}
.first-sec {
    width: 55%;
    padding-top: 100px;
}
.first-sec h1 {
    font-family: "Brawler", serif;
    font-size: 85px;
    color: #fff;
    line-height: 95px;
}
.first-sec h5 {
    font-size: 25px;
    color: #fff;
}
.second-sec {
    position: absolute;
    bottom: 100px;
    width: 100%;
    left: 0;
    right: 0;
}
.second-sec p {
    font-size: 20px;
    text-align: start;
}
.arrow-sec {
    position: absolute;
    bottom: 100px;
    display: flex;
    align-items: center;
    min-width: 150px;
}
.arrow-sec p {
    color: #fff;
    font-size: 24px;
}
span.page-line {
    height: 2px;
    width: 50px;
    background: #fff;
}
.arrow-sec button {
    font-size: 24px;
}
.main-hd h5, .main-hd h5 {
    font-size: 1.5rem !important;
}
.main-hd h1 {
    font-size: 4rem !important;
    margin-bottom: 30px;
}
.home-about img {
    height: 700px;
    width: 100%;
    object-fit: cover;
}

a.link-btn {
    position: relative;
    font-size: 1.2rem;
    min-width: 100px;
    font-weight: 500;
}
a.link-btn i {
    transform: rotate(40deg);
    transition: all 0.3s;
}

a.link-btn:hover i {
    transform: rotate(90deg);
    transition: all 0.3s;
}
a.link-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
a.link-btn:hover::after {
    width: 100%;
    transition: width 0.3s ease;
    font-family: 600;
}

section.serve-sec .card  {
    height: 100%;
}
section.serve-sec h1 {
    font-size: 60px;
}
.serve-sec .card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}

.serve-icon {
    width: 100px;
    height: 100px;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.serve-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
section.home-service.serve-sec .content-txt a.primary-btn {
    font-size: 1rem;
    padding: .35rem .35rem .35rem .75rem;
}
section.serve-sec .card {
    border: 1px solid #e6f0ff;
}
section.why-choose {
    background: #103464;
    background: linear-gradient(180deg, rgba(16, 52, 100, 1) 0%, rgba(11, 68, 143, 1) 100%);
    padding: 70px 0;
    position: relative;
}
.why-choose::before {
    content: '';
    position: absolute;
    background-image: url(../images/before-bg.png) !important;
    background: no-repeat;
    right: 0;
    top: 0;
    width: 350px;
    height: 350px;
    z-index: 99;
    background-size: cover;
}

section.why-choose .card {
    overflow: hidden;
}

section.why-choose .card img {
    height: 400px;
    object-fit: cover;
}
.planing-videosec {
    position: relative;
    height: 900px;
    overflow: hidden;
}
.planing-videosec video {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    object-fit: cover;
}
.planing-videosec::before {
    background: rgba(12, 35, 64,0.6);
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 9;
}
.planing-videosec-cntnt {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    place-content: end;
    padding-bottom: 50px;
}

.planing-videosec-cntnt  .main-hd {
    color: var(--white);
}

/* carousel- start */

.img-container {
    overflow: hidden;
    height: 500px !important;
}
.img-container img {
    border-radius: 20px;
}
section.home-service.serve-sec .content-txt {
    position: absolute;
    z-index: 9;
    top: 30px;
    left: 20px;
    color: #fff;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 450px;
}
section.home-service.serve-sec .content-txt h3 {
    font-size: 2.2rem !important;
    font-weight: 600;
}
section.home-service.serve-sec .content-txt p {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 30px;
}
.multi-carousel-container {
  cursor: grab;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.multi-carousel-container.dragging,
#multiCarousel.dragging {
  cursor: grabbing;
}
.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0 10px;
}

/* Individual slide */
.multi-carousel-item,
.clone {
  box-sizing: border-box;
  flex: 0 0 calc(100% / 4);
  padding: 0 10px;
  position: relative;
}
.multi-carousel-control-prev,
.multi-carousel-control-next {
  align-items: center;
  background-color: var(--bg-dark);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 10;
  margin: 3px;
  border: 1px solid #C8C8C8;
  font-size: 20px;
}
.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}
.img-container {
  border-radius: 1.5rem;
  height: var(--carousel-height, 80vh);
  overflow: hidden;
  position: relative;
}
.img-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #ffffff;
    background: rgba(0, 0, 0, .5);
}
.multi-carousel-item:hover .img-container::before {
    background: #000000;
    background: rgba(0, 0, 0, 0.6);
}
.img-container img,
#carouselInner img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  /* user-drag: none; */
  width: 100%;
  transition: transform 0.3s ease;
}

.img-container:hover img {
  transform: translateZ(0) scale(1.02);
}
.carocel-btn-group {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 20px 20px 0px;
}
#multiCarousel {
  cursor: grab;
  touch-action: pan-y;
}
#multiCarousel.dragging {
  user-select: none;
  -webkit-user-select: none;
}
.banner-inn {padding-top: 100px;}
.inn-banner-sec {
    padding: 50px 0;
    display: block;
}
.inn-banner-cntnt img {
    width: 100%;
    position: relative;
    min-height: 250px;
    object-fit: cover;
}
.inn-banner-cntnt {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.inn-banner-cntnt:after {
    background: rgba(12, 35, 64,0.6);
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.inn-banner-cntnt .cndnt {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 50%;
}
.inn-banner-cntnt .cndnt h5 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
}
.inn-banner-cntnt .cndnt h1 {
    font-size: 80px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0;
}
ul.service-li {
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}
ul.service-li li {
    display: flex;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--primary);
}
ul.service-li li span {
    padding-top: 3px;

}
section.services .serve-icon {
    border-radius: 20px;
    width: 80px;
    height: 80px;
    background: #E5F0FF;
}
section.services .serve-icon img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
}

.custom-acc {
    border-radius: 16px !important;
    margin-bottom: 20px;
    border: 1px solid #e4e4e4;
    padding: 25px;
    position: relative;
}
.custom-acc .accordion-button {
    background: transparent;
    box-shadow: none !important;
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--dark) !important;
}

.custom-acc .accordion-button:not(.collapsed) {
    background: transparent;
}
.custom-acc .icon-wrap {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--bg-dark);
    border-radius: 50%;
    cursor: pointer;
    font-family: monospace;
}
.custom-acc .icon-wrap::before {
    content: "-";
    font-size: 32px;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-weight: 300;
}
span.icon-wrap.collapsed::before {
    content: "+";
    font-size: 32px;
}
/* .icon-wrap:not(.collapsed)::before {
    content: "–";
    font-size: 32px;
} */
.custom-acc .accordion-button, .accordion-button:not(.collapsed) {
    background: transparent !important;
}
.custom-acc .accordion-button::after, .accordion-button:not(.collapsed)::after {
    display: none;
}
.accordion-item.custom-acc:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
}
.accordion-item.custom-acc .accordion-collapse.collapse.show {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
}
section.questions-sec .accordion {
    max-height: 600px;
    overflow: auto;
}
.questions-sec {
    position: relative;
}
.questions-sec::before {
    content: '';
    position: absolute;
    background: url(../images/faq-before.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: -35%;
    top: 40%;
    width: 100%;
    height: 220px;
}
img.about-img {
    border-radius: 30px;
    height: 600px;
    object-fit: cover;
}
.our-approch .card-body {
    padding: 50px !important;
}
.philosophy-sec {
    background: #F3F5F7;
}
.philosophy-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    max-height: 750px;
}
section.banner-inn.contact-banner-inn .cndnt {
    max-width: 60%;
    width: 100%;
}
.card.address-card .icon {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.card.address-card .icon span {
    font-size: 35px;
}
.card.contact-form-card .form-control, .card.contact-form-card select.form-select {
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-color: var(--border-light);
    font-size: 1.3rem;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%) !important;
}
.card.contact-form-card  label {
    color: var(--gray);
}
.card.address-card .card-body {
    padding: 50px 30px !important;
}
section.right-icon-sec {position: relative;}
section.right-icon-sec::before {
    position: absolute;
    content: '';
    background: url(../images/logo-right-icon.png);
    background-repeat: no-repeat;
    right: -20px;
    top: 20px;
    z-index: 99;
    width: 100%;
    height: 150px;
    background-position: right;
    background-size: contain;
}

section.about-page .main-hd {
    position: relative;
    overflow: hidden;
}
section.about-page .main-hd h1 {
    max-width: 90%;
}
section.about-page .main-hd::before {
    position: absolute;
    content: '';
    background: url(../images/logo-right-icon.png);
    background-repeat: no-repeat;
    right: -1%;
    top: 70px;
    z-index: 99;
    width: 100%;
    height: 100px;
    background-position: right;
    background-size: contain;
}
section.services.our-approch.right-icon-sec::before {
    top: 10px;
    height: 120px;
}


section.excellence-sec {
    background: url(../images/excellence-bg.webp);
    height: 700px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;

}
section.lets-talk {
    background: url(../images/lets-talk-img.webp);
    height: 500px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 50px 0;
}
section.lets-talk h1 {
    font-size: 80px;

}
ul.social-links {
    padding-left: 0;
    list-style: none;
}
ul.social-links li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--dark);
}
ul.social-links li a {
   font-size: 1rem;
    color: var(--dark) !important; 
}
ul.social-links span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    background: var(--secondary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #ffff;
    margin-right: 10px;
}
.footer-address p {
    color: var(--dark);
    font-size: 1rem;
    max-width: 80%;
    margin-bottom:  0 !important;
}
footer h6 {
    text-transform: uppercase;
}
footer h4 {
    text-transform: uppercase;
    max-width: 70%;
    font-family: "Poly", serif;
    line-height: 30px;
}
.footer-bg::before {
    content: '';
    background: url(../images/footer-before.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 9;
    position: absolute;
    left: 0;
    top: 0;
}
.footer-top {
    position: relative;
}
.footer-top::after {
    content: '';
    background: url(../images/footer-after.png);
    background-repeat: no-repeat;
    width: 300px;
    height: 100%;
    z-index: 9;
    position: absolute;
    right: 0;
    top: 0;
    background-size: contain;
    opacity: .5;
}
.footer-bg {
    position: relative;
}

.inn-banner {
    background: url(../images/contact-banner.webp);
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inn-banner p {
    width: 100%;
    margin: 0 auto;
    color: var(--white);
}
.contact-card {
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden;
}
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px;
}
.contact-left p {
    font-size: 1.5rem;
    margin-bottom: 0 !important;
}
.location-sec {
    margin-top: 50px;
}
.form-card {
    background: #fff;
    padding: 50px;
    margin-right: -2px;
}
.form-floating>label {color: var(--dark);}
a.primary-btn.secondary-btn {
    background: var(--secondary) !important;
    color:  var(--white) !important;
    border: 1px solid var(--secondary);
}
a.primary-btn.secondary-btn span {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}
a.primary-btn.secondary-btn:hover {
    border: 1px solid var(--secondary);
    background: var(--white) !important;
    color: var(--secondary) !important;
}
.contact-left ul.social-links span {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
.form-floating sup {
    color: var(--danger);
}
.contact-left h2 {
    font-size: 60px;
    font-family: "Poly", serif;
}
.location-sec span {
    font-size: 2rem;
}
.service-banner {
    background-image: url(../images/services-banner.webp);
}

/* service-toggle */

.service-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 500;
}

.service-toggle .toggle-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    font-size: 2rem;
    font-family: "Poly", serif;
}

.service-toggle .toggle-btn.active {
    color: #4db8ff; /* highlight */
}

.service-toggle .toggle-btn:hover {
    color: #4db8ff;
}

.service-toggle .divider {
    color: #aaa;
}

/* Hide sections */
.service-section {
    display: none;
}
.service-section.active {
    display: block;
}
.card.service-card {
    background: #000;
    border: 1px solid var(--border-color) !important;
    overflow: hidden;
    height: 100%;
}
.card.service-card img {
    height: 270px;
    object-fit: cover;
}
/* service-toggle */

.serve-text {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 85%;
    transform: translate(-50%, -50%);
}
.card.service-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}
.card.service-card ul li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.server-img-sec {
    position: relative;
}
.server-img-sec::before {
    content: '';
    position: absolute;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 1) 100%);
    background-position: bottom;
    height: 100%;
    width: 100%;
}
a.enquiry-btn {
    background: var(--white);
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    margin-top: 25px;
    border: 1px solid var(--white);
    display: block;
    font-size: 1.3rem !important;
    font-weight: 600;
}
a.enquiry-btn:hover {
    background: var(--bg-dark);
    border: 1px solid var(--white);
    color: var(--white) !important;
}
.card.service-card h3 {
    font-size: 43px;
    font-weight: 600;
}
.card.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.card.service-card h5  {
    font-size: 1.5rem;
}
.server-img-sec.side-img {
    height: 100%;
}
.server-img-sec.side-img::before {
    content: '';
    position: absolute;
    background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.98) 100%);
    background-position: right;
    height: 100%;
    width: 100%;
}
.server-img-sec.side-img img {
    height: 100%;
    object-fit: cover;
}
.card.inn-card {
    background: #000;
    border: 1px solid var(--border-color) !important;
    height: 100%;
}
button.primary-btn.btn-outline-secondary {
    padding: 10px 20px;
    border: 1px solid #c7c7c7;
}
button.primary-btn.btn-outline-secondary:hover {
    background: #c7c7c7;
}
.modal-content.enquiry-modal {
    padding: 30px;
    background: #000000;
    background: linear-gradient(120deg, rgba(0, 0, 0, 1) 0%, rgba(107, 162, 213, 1) 100%);
    border: none;
}

.modal-content.enquiry-modal .form-control {
    background: none;
    border-color: var(--white) !important;
    color: var(--white) !important;
}
.modal-content.enquiry-modal .form-floating>.form-select {
    background: none;
    color: var(--white);
}
.modal-content.enquiry-modal .form-floating>label {
    color: var(--white);
}
.modal-content.enquiry-modal .form-control:focus {
    background: none;
}
.modal-content.enquiry-modal label.error {
    color: #a70000;
    bottom: -10px;
}
.modal-content.enquiry-modal textarea.form-control {
    min-height: 100px;
}
label.error {
    color:  var(--danger);
    margin-top: -15px;
    font-size: 14px;
    position: absolute;
    bottom: -25px;
}
.modal-content.enquiry-modal .text-area-formcontrol label.error {
    bottom: -25px !important;
}
select.form-select.country-code {
    padding-top: 10px;
}
/* Select box */
.form-select {
  background-color: #000;
  color: #fff;
  border-color: #444;
}

/* Dropdown options */
.form-select option {
  background-color: #000;
  color: #fff;
}

/* Focus state */
.form-select:focus {
  background-color: #000;
  color: #fff;
  border-color: #666;
  box-shadow: none;
}


/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 720px) {
  .multi-carousel-item,
  .clone {
    flex: 0 0 100%;
  }
}
/* carousel-End */

/* Responsive-view */

@media (min-width: 1600px) {
    .container {max-width: 1600px !important;}
}
@media (max-width: 1600px) {
   .first-sec { width: 67%;}
}
@media (max-width: 1399.98px) {
    .main-hd h1 {font-size: 3.4rem !important; margin-bottom: 30px;}
    .primary-btn {font-size: 1.25rem; padding: .5rem .5rem .5rem 1rem;}
    .first-sec { width: 85%;}
    .first-sec h1 {font-size: 80px; line-height: 90px;}
    .img-container h3 {font-size: 1.5rem;}
    .multi-carousel-item, .clone { flex: 0 0 calc(100% / 3); }
    .banner-content{width: 100%;}
    .banner-content h1 {font-size: 4rem;}

}
@media (max-width: 1199.98px) {
    p{font-size: 1.25rem;}
    .container-fluid {padding-left: 20px !important; padding-right: 20px !important;}
    ul.footer-links a {font-size: 14px;}
    header.scrolled {padding: .5rem 0;}
    header.scrolled .navbar-nav .nav-link.active::after {bottom: -19px;}
    .custom-acc {padding: 10px;}
    .custom-acc .accordion-button {font-size: 1.25rem !important; padding: 10px;}
    .custom-acc .icon-wrap {right: 15px; top: 15px; width: 35px; height: 35px;}
    .main-hd h1 {font-size: 3.4rem !important; margin-bottom: 30px;}
    ul.service-li li {margin-bottom: 8px; font-size: 18px; color: var(--primary);}
    .questions-sec::before { height: 200px; top: 50%; left: -40%;}
    .accordion-body p {margin-bottom: 10px; font-size: 1.2rem;}
    .inn-banner-cntnt .cndnt {max-width: 80%;}
    .inn-banner-cntnt .cndnt h1 {font-size: 60px;}
    footer h1 {font-size: 50px; line-height: 60px;}
    section.banner-inn.contact-banner-inn .inn-banner-sec {padding-bottom: 0;}


    .banner-content{width: 100%;}
    .banner-content h1 {font-size: 3.5rem;}
    .banner-content p {font-size: 1rem;}
    h2.hd-h2 {font-size: 50px;}
    section.excellence-sec {height: 600px;}
}
@media (max-width: 991.98px) {
    p{font-size: 1.25rem;}
    .sec-pading {padding: 2rem 0;}
    .first-sec h1 {font-size: 60px; line-height: 70px;}
    .multi-carousel-item, .clone { flex: 0 0 calc(100% / 2);}
    p.footer-abt {max-width: 100%;}
    footer h1 {margin-bottom: 30px; text-align: center;}
    .planing-videosec {height: 600px;}
    section.questions-sec .accordion {max-height: 100%;}
    .inn-banner-cntnt .cndnt h5 {margin-bottom: 0;}
     .inn-banner-cntnt .cndnt {max-width: 80% !important;}
    .inn-banner-cntnt .cndnt h1 {font-size: 50px;}
    .main-hd h1 {font-size: 3rem !important; margin-bottom: 15px !important;}
    .our-approch .card-body {padding: 25px !important;}
    .philosophy-sec img {max-height: 400px;}
    section.services .serve-icon {margin-bottom: 15px;}
    section.services.our-approch.sec-pading { padding-top: 0;}
    .card.address-card .card-body {padding: 30px !important;}
    
}
@media (max-width: 767.98px) {
    .container-fluid {padding-left: 20px !important; padding-right: 20px !important;}
    p {font-size: 1.15rem; margin-bottom: 10px;}
     /* header .logo {width: 100px; height: auto;} */
     .first-sec {width: 95%;}
     .first-sec h1 { font-size: 50px; line-height: 60px;}
     .arrow-sec {left: 50%; transform: translateX(-50%); bottom: 50px;}
     .carousel-item img {max-height: calc(100vh - 200px);}
     .arrow-sec { left: 50%; transform: translateX(-50%); bottom: 50px; z-index: 99;}
     .first-sec {padding-top: 50px;}
     .main-hd h1 {font-size: 2.5rem !important; margin-bottom: 10px;}
     .multi-carousel-item, .clone { flex: 0 0 calc(100% / 1);}
     footer h1 { font-size: 45px; line-height: 55px;}
     p.footer-abt {text-align: center;}
     .footer-address p {justify-content: center; text-align: center;margin-bottom: 10px;}
     .first-sec h5 {font-size: 1rem;}
     .second-sec p {font-size: 1rem; text-align: center;}
     .inn-banner-cntnt .cndnt h1 {font-size: 40px;}
     .inn-banner-cntnt .cndnt {max-width: 90%;}
     .inn-banner-sec {padding: 30px 0;}
     .custom-acc .icon-wrap {right: 10px;}
     .custom-acc .accordion-button {padding-right: 40px;}
     .custom-acc .accordion-body {padding: 10px;}
     .accordion-body p {font-size: 1rem;}
     ul.service-li li {font-size: 1rem;}
     img.about-img { height: 300px; width: 100%; object-position: top;}
     .card.address-card .icon {width: 70px; height: 70px;}
    }
@media (max-width: 575.98px) { 
    p {font-size: 1.1rem;}
    .banner-content {padding-top: 100px;}
    .about-banner {height: 1000px;}
    .container-fluid {padding-left: 15px !important; padding-right: 15px !important;}
    .first-sec {width: 100%; text-align: center;}
    .second-sec { bottom: 120px;}
    .first-sec h1 {font-size: 32px; line-height: 40px;}
    .primary-btn {font-size: 1rem;}
    .arrow-sec p {font-size: 18px;}
    .carousel-item img {max-height: calc(100vh - 250px);}
    .main-hd h4 {font-size: 1.25rem !important;}
    .main-hd h1 { font-size: 2.1rem !important;}
    section.why-choose {padding: 40px 0;}
    .card-body {padding: 20px !important;}
    .planing-videosec-cntnt {padding-bottom: 10px;}
    .img-container h3 { font-size: 1.25rem;}
    .img-container {height: 400px !important;}
    .carocel-btn-group {padding: 10px 20px;}
    footer h1 { font-size: 30px; line-height: 35px;}
    .sec-pading {padding: 1rem 0;}
    .inn-banner-cntnt img {height: 200px; min-height: auto;}
    .inn-banner-cntnt .cndnt h5 {font-size: 22px;}
    .inn-banner-cntnt .cndnt h1 {font-size: 35px;}
    .custom-acc .icon-wrap::before {left: 50%;}
    span.icon-wrap.collapsed::before {font-size: 28px;}

}
@media (max-width: 400.98px) { 

    .our-mission .card {max-width: 290px;}
    .inn-banner-cntnt .cndnt h5 {font-size: 20px; margin-bottom: 0;}
    .inn-banner-cntnt .cndnt h1 {font-size: 28px;}
}
