@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700');

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
}

p {
  /*font-size: 15px;*/
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 15px;
  color: #0b1934;
}

a {
  color: #000;
  text-decoration: none !important;
  transition: ease-in-out 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #0b1934;
  line-height: 1.2;
  text-transform: capitalize;
}

h1 {
  font-size: 44px;
  margin-bottom: 25px;
}

h2 {
  font-size: 38px;
  margin-bottom: 25px;
  /* text-transform: uppercase; */
  font-weight: 600;
}

img {
  max-width: 100%;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button,
.btn {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.btn1 {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 35, 56, 0.3);
  position: relative;
  overflow: hidden;
}

.btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 35, 56, 0.4);
  color: white;
  text-decoration: none;
}

.btn1:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b1934 0%, #cf2338 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn1:hover:before {
  left: 0;
}

/* Improved alignment classes */
.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.d-flex {
  display: flex !important;
}

section,
footer {
  width: 100%;
  float: left;
}


.mainHeader {
  z-index: 4;
  position: relative;
}

.mainHeader .navbar {
  border: none;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.navbar-brand {
  width: 250px;
  height: auto;
  padding: 10px 15px;
}

.mainHeader .navbar-right {
  margin-top: 20px;
}

.mainHeader .navbar-right>li {
  position: relative;
}

.mainHeader .navbar-right>li>a {
  font-size: 18px;
  color: #0b1934;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
}

.mainHeader .navbar-right>li>a:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 3px;
  left: 50%;
  bottom: 0;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mainHeader .navbar-right>li>a:focus:before,
.mainHeader .navbar-right>li>a:hover:before {
  width: 100%;
}

.mainHeader .navbar-right>li>a:focus,
.mainHeader .navbar-right>li>a:hover {
  background-color: transparent;
  color: #cf2338;
  transform: translateY(-2px);
}

.mainHeader .navbar-right>li.active>a:before {
  width: 100%;
}

.mainHeader .navbar-right .dropdown:hover .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease;
}

.mainHeader .navbar-right .dropdown-menu {
  padding: 8px;
  border: none;
  right: -100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: visible;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mainHeader .navbar-right .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}

.mainHeader .navbar-right .dropdown-menu>li>a {
  font-size: 14px;
  color: #0b1934;
  font-weight: 500;
  text-transform: capitalize;
  padding: 15px 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 2px 5px;
  border-radius: 8px;
}

.mainHeader .navbar-right .dropdown-menu>li>a:hover {
  color: #fff;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  transform: translateX(5px);
}

.mainHeader .navbar-right .dropdown-menu>li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #cf2338;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mainHeader .navbar-right .dropdown-menu>li>a:hover:before {
  transform: scaleY(1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.homeBanner {
  padding: 0px;
  background-image: url(../images/banner1.jpg);
  background-size: cover;
  background-position: center 60%;
  margin-top: 0px;
  background-repeat: no-repeat;
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

/* Integrated Header in Hero Section */
.homeBanner .mainHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 20px 0;
  margin-bottom: 0 !important;
}

.homeBanner .mainHeader .navbar-brand img {
  /* Use original logo size */
}

.homeBanner .mainHeader .navbar-nav > li > a {
  color: #0b1934 !important;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.homeBanner .mainHeader .navbar-nav > li > a:hover {
  color: #cf2338 !important;
}

/* Hero Content Positioning */
.homeBanner > .container {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}

/* Ensure text content stays within 50% section */
.homeBanner .col-sm-6 {
  overflow: hidden;
  word-wrap: break-word;
}

.homeBanner .col-sm-6.bannerText {
  padding-right: 15px;
}

.bannerText {
  margin: 0px;
  margin-top: 100px;
  padding-top: 20px;
  width: 100%;
  text-align: left;
  /* padding-left: 10px;
  padding-right: 10px; */
  max-width: 150%;
  box-sizing: border-box;
}

.bannerText h1 {}

.bannerText h1 {
  color: #0b1934;
  word-wrap: break-word;
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: 32px;
}

.bannerText h1 span {
  font-size: 36px;
  display: block;
  margin-bottom: 5px;
  color: #0b1934;
}

.bannerText p {
  font-size: 16px;
  color: #0b1934;
  word-wrap: break-word;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}

.btn1 {
  font-size: 18px;
  color: white;
  padding: 13px 25px;
  background-color: transparent;
  position: relative;
  z-index: 1;
  margin: 20px 10px 20px 0px;
  display: inline-block;
}

.btn1:hover {
  color: #fff;
  box-shadow: 0px 10px 40px rgba(234, 67, 87, 0.2);
}

.btn1:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 100%;
  background: #ea4357;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width ease-in-out 0.5s;
}

.btn1:hover:before {
  width: 100%;
}

.height100vh {
  min-height: 100vh;
}


.pageDownIcon {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, -50%);
}

.pageDownIcon span {
  position: relative;
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
}

.pageDownIcon span:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background: #0b1934;
  left: 0;
  top: 0;
  z-index: -1;
  transform: rotate(45deg);
  transition: ease-in-out 0.5s;
}

.pageDownIcon span i {
  z-index: 1;
  position: relative;
  color: #fff;
  font-size: 36px;
  line-height: 50px;
}

.pageDownIcon:hover span:before {
  background: #cf2338;
  transform: rotate(225deg);
}


.colContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.col {
  padding: 0px 15px;
}

.title {
  font-size: 36px;
  position: relative;
}

.title:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 100%;
  left: -20px;
  top: 0;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
}

.title span {
  display: block;
  text-transform: capitalize;
  font-size: 20px;
}

.bgBox1 {
  background: #0b1934 url(../images/bgLogoIcon.svg) top -20px left -40px no-repeat;
  background-attachment: fixed;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  position: relative;
}

.bgBox1 .title {
  color: #fff;
}

.bgBox1 .divBox {
  width: 100%;
  max-width: 410px;
  padding: 110px 40px 110px 0px;
  margin-left: auto;
}

.bgBox1 .divBox p {
  color: #fff;
  text-align: justify;
}

.bgBox2 {
  width: 58.33333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  background: #fdf9f9;
  padding-left: 0px;
}

.bgBox2 .divBox {
  width: 100%;
  max-width: 667px;
  padding: 60px 0px;
  margin-right: auto;
  display: flex;
}

.bgBox2 .divBox h5 {
  font-size: 18px;
  margin: 0px 0px 15px;
  font-weight: 600;
}

.bgBox2 .divBox p {
  font-size: 14px;
  line-height: 24px;
}

.serviceList {
  width: 100%;
  float: left;
  margin: 0;
}

.serviceList li {
  width: 100%;
  float: left;
  padding: 30px 20px 15px 115px;
  position: relative;
  transition: ease-in-out 0.1s;
}

.serviceList .iconLeft {
  width: 100px;
  float: left;
  position: absolute;
  left: 0;
  top: 10px;
  padding: 15px;
  text-align: center;
}

.serviceList .iconLeft i {
  color: #cf2338;
  transition: all 0.3s ease;
}

.serviceList .iconLeft i:before {
  font-size: 60px;
  display: block;
}

.serviceList .serviceInfo {
  float: left;
}

.serviceList li {
  transition: all 0.3s ease;
  cursor: pointer;
}

.serviceList li:hover {
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  border-radius: 0px 10px 10px 0px;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(207, 35, 56, 0.3);
}

.serviceList li:hover .iconLeft i,
.serviceList li:hover h5,
.serviceList li:hover p {
  color: #fff;
}

.serviceList li:hover .iconLeft i {
  transform: scale(1.1) rotate(5deg);
}

.serviceList li:hover:before {
  position: absolute;
  content: '';
  width: 18px;
  height: 100%;
  top: 0;
  right: 100%;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
}

.serviceList li:hover:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 100%;
  right: 100%;
  border-left: 18px solid transparent;
  border-right: 0px solid transparent;
  border-top: 18px solid #cf2338;
}



.ourCompany {
  display: table;
  width: 100%;
}

.ourCompany .col-6 {
  display: table-cell;
  width: 50%;
  padding: 90px 15px;
  position: relative;
}

.ourCompanyImg {
  background: url(../images/ourCompanyImg2.jpg) left center no-repeat;
  background-size: cover;
}

.ourCompanyInfo {
  padding: 40px 15px 30px 70px;
  background: #fff;
  margin-left: -170px;
  width: 100%;
}

.ourCompanyInfo p {
  text-align: justify;
}


.portfolio {
  padding: 95px 0px;
}

.portfolioBoxCenter {
  margin-top: 15px;
}

.portfolioBox {
  width: 100%;
  float: left;
  text-align: center;
}

.portfolioBox li {
  float: left;
  overflow: hidden;
}

.portfolioBox img {
  display: block;
  width: 100%;
}

.portfolioBox li a {
  display: block;
  line-height: 0px;
}

.fancybox-lock .fancybox-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.otherBox {
  float: left;
  width: 68.42105263157895%;
}

.portfolioBox .box1 {
  width: 31.57894736842105%;
  float: left;
}

.portfolioBox .box2 {
  width: 35.76923076923077%;
  float: left;
  margin-left: 1.50%;
  margin-bottom: 12px;
}

.portfolioBox .box3 {
  width: 60.51282051282051%;
  margin-left: 1.50%;
  float: left;
  margin-bottom: 13px;
}

.portfolioBox .box4 {
  width: 48.07692307692308%;
  margin-left: 1.50%;
  float: left;
}

.portfolioBox .box5 {
  width: 48.07692307692308%;
  float: left;
  margin-left: 1.50%;
}

.portfolioBox .readmoreBtn {
  margin: 25px auto 0px;
}


.btnRed {
  font-size: 16px;
  color: #fff;
  padding: 12px 25px;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 35, 56, 0.3);
  position: relative;
  overflow: hidden;
}

.btnRed:hover {
  color: #fff;
  background: linear-gradient(135deg, #0b1934 0%, #cf2338 100%);
  box-shadow: 0 8px 25px rgba(207, 35, 56, 0.4);
  transform: translateY(-2px);
}

.portfolio .btnRed {
  margin-top: 45px;
  float: right;
}

.otherBoxRow {
  width: 100%;
  float: left;
}

.ourClients {
  padding: 40px 0px;
  background: #fdf9f9;
  text-align: center;
  position: relative;
}

.ourClients .item {
  height: 70px;
  line-height: 70px;
}

.ourClients .item img {
  opacity: 0.2;
  vertical-align: middle;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: ease-in-out 0.5s;
}

.ourClients .item:hover img {
  opacity: 1;
  filter: none;
}

.ourClients .owl-theme .owl-controls .owl-buttons div:hover {
  color: #4aa0eb;
}

.ourClients .owl-carousel {
  float: left;
}

.ourClients .owl-carousel .owl-buttons {
  display: none;
}

.owl-theme .owl-controls .owl-page span {
  width: 15px;
  height: 4px;
}



footer {
  color: #fff;
  background: #0b1934 url(../images/footerBG.png) bottom center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0px 20px;
  overflow: hidden;
}

footer .footerAboutInfo {}

footer .footerAboutInfo .flogo {
  max-width: 130px;
  margin-bottom: 15px;
}

footer .footerAboutInfo p {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  font-weight: 400;
}

footer .footerLinks {}

footer .footerLinks h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 35px;
}

footer .footerLinks ul {
  width: 25%;
  float: left;
}

footer .footerLinks ul li {}

footer .footerLinks ul li a {
  font-size: 13px;
  color: #fff;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
}

footer .footerLinks ul li a:hover {
  color: #ea4b57;
}

.CopyrightSection {
  width: 100%;
  float: left;
  border-top: 1px #27344e solid;
  margin-top: 40px;
  padding: 30px 0px;
}

.copyrightBox {}

.copyrightBox p {
  color: #fff;
  font-size: 13px;
  line-height: 34px;
  font-weight: 400;
  margin: 0;
}

.footerSocialLinks {
  text-align: right;
}

.footerSocialLinks a {
  font-size: 14px;
  color: #0b1934;
  text-align: center;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50px;
  display: inline-block;
  margin: 0px 10px;
  position: relative;
  z-index: 1;
}

.footerSocialLinks a:before {
  position: absolute;
  content: '';
  width: 34px;
  height: 34px;
  background: #fff;
  left: 0;
  top: 0;
  z-index: -1;
  transform: rotate(45deg);
  transition: ease-in-out 0.5s;
}

.footerSocialLinks a:hover:before {
  background: #ea4b57;
  transform: rotate(225deg);
}

.footerSocialLinks a:hover {
  color: #fff;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  box-shadow: 0px 15px 50px 0px rgba(207, 35, 56, 0.3);
  transform: translateY(-3px) scale(1.1);
}


.innerBanner {}

.bgBanner2 {
  background-image: url(../images/banner3.jpg);
}

.bgBanner3 {
  background-image: url(../images/banner2.jpg);
}

.bgBanner4 {
  background-image: url(../images/banner4.jpg);
}

.innerBanner .bannerText {
  margin: 0px;
  margin-top: -30px;
}

.ptb80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.textJust p {
  text-align: justify;
}


.boxList {
  padding-top: 100px;
  padding-bottom: 50px;
}

.boxList .whitePanel {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.boxList .whitePanel:hover {
  /*background: #ea4b57; */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.boxList .icBox {
  width: 50px;
}

.boxList h6 {
  font-size: 16px;
  font-weight: 600;
}

.boxList p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}


.changePosition {}

.changePosition .title:before {
  left: auto;
  right: -20px;
}

.changePosition .ourCompanyInfo {
  margin-left: auto;
  margin-right: -170px;
  text-align: right;
  padding: 40px 70px 30px 15px;
}

.changePosition .ourCompanyInfo p {
  text-align-last: right;
}

.whatWeDoBG {
  background: url(../images/whatWeDoBG.jpg) left center no-repeat;
  background-size: cover;
}

.missionBG {
  background: url(../images/missionBG.jpg) left center no-repeat;
  background-size: cover;
}

.visionBG {
  background: url(../images/visionBG.jpg) left center no-repeat;
  background-size: cover;
}


.weAreGoodAt {
  padding: 50px 0px;
  background: #ea4357;
}

.countBox {
  text-align: center;
}

.countBox>img {
  width: 50px;
}

.countBox h4 {
  font-weight: 500;
  color: #fff;
}

.count {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  position: relative;
  margin-left: -15px;
}

.count:after {
  position: absolute;
  content: '%';
  left: 100%;
  bottom: 0;
}


.servicesSet {}

.bgDarkSet {
  background-color: #0b1934;
  color: #fff;
}

.bgDarkSet .bgDark {
  padding: 80px 50px;
}

.bgDark .title,
.bgDark p {
  color: #fff;
}

.servicesSet .boxList {
  background: #fff;
  padding: 100px 35px;
}

.servicesSet a.whitePanel {
  display: block;
  min-height: 250px;
}

.servicesSet .whitePanel i {
  display: inline-block;
  color: #0b1934;
}

.servicesSet .whitePanel i:before {
  font-size: 50px;
}

.logIconBg {
  background: #0b1934 url(../images/bgLogoIcon.svg) top -20px left -40px no-repeat;
  background-attachment: fixed;
}

.logIconBg2 {
  background: #fff url(../images/bgLogoIcon2.svg) top -20px left -40px no-repeat;
  background-attachment: fixed;
}


.whitePanel:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  background: #ea4b57;
  top: 0;
  left: 0;
  transition: width ease-in-out 0.5s;
  z-index: -1;
}

.whitePanel:hover:before {
  width: 100%;
}


.listUl {
  width: 100%;
  float: left;
  padding-left: 25px;
  margin-top: 15px;
}

.listUl li {
  font-size: 15px;
  margin-bottom: 15px;
  list-style: disc;
}


.imgDesBox {}


.contact-page iframe {
  widows: 100%
}

.contact-page a {
  color: #999;
}

.contact-page h4 {
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 8px;
  margin: 10px 0px 25px;
}

.contact-page li {
  margin-bottom: 30px;
  line-height: 24px;
  padding-left: 10px;
}

.contact-page li .fa {
  color: #ea4b57;
  line-height: 20px;
}

.contact-page a.fa {
  width: 35px;
  height: 35px;
  border: 1px solid #f0f0f0;
  color: #000;
  text-align: center;
  line-height: 35px;
  margin-right: 20px;
  margin-top: 5px;
  transition: ease-in-out 0.5s;
}

.contact-page a.fa:hover {
  color: #fff;
  background-color: #ea4b57;
  border-color: #ea4b57;
}

.contact-page iframe {
  width: 100%;
  height: 216px;
  border: none;
}

.contact-page .form form {
  background-color: #fff;
  padding: 80px 20px 40px;
  position: relative;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.contact-page .form .title {
  position: absolute;
  color: #fff;
  width: 360px;
  top: -60px;
  right: 380px;
  padding: 0 !important;
  text-align: center;
  line-height: 96px;
  text-transform: uppercase;
  font-weight: 600 !important;
  border-radius: 3px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  background: #ea4b57;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#ea4b57, #c4045d);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#ea4b57, #c4045d);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#ea4b57, #c4045d);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#ea4b57, #c4045d);
  /* Standard syntax (must be last) */
}

.contact-page .form .form-group {
  margin-bottom: 20px;
}

.contact-page .form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent;
  box-shadow: none;
}

.contact-page .form input.form-control {
  height: 40px;
}

.contact-page .form .form-control:focus {
  border-bottom-color: #ea4b57;
}

.contact-page .form .form-control:focus+.input-group-addon {
  color: #ea4b57 !important;
}

.contact-page .form .input-group:hover+.input-group-addon {
  color: #ea4b57;
}

.contact-page .form .input-group-addon {
  background-color: transparent;
  border: none;
  color: #ea4b57;
  font-size: 18px;
  padding: 6px 0px;
  vertical-align: top;
}

.contact-page .form .input-group-addon .fa {
  width: 30px;
  text-align: left;
}

.contact-page .form .btn {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 35, 56, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  width: 220px;
  font-size: 16px;
}

.contact-page .form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 35, 56, 0.4);
  color: white;
  text-decoration: none;
}

.contact-page .form .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b1934 0%, #cf2338 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-page .form .btn:hover:before {
  left: 0;
}

.contact-page .form .btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  z-index: 1;
}

.contact-page .form .btn span:after {
  display: none;
}

/* Modal Send Message Button Styling */
.modal .btn {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 35, 56, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.modal .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 35, 56, 0.4);
  color: white;
  text-decoration: none;
}

.modal .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b1934 0%, #cf2338 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.modal .btn:hover:before {
  left: 0;
}

.modal .btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  z-index: 1;
}

/* Drop us message button styling - matches Learn About Us exactly */
.contact-page .form .title {
  display: block;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align: left;
  background: linear-gradient(135deg, #cf2338 0%, #0b1934 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 35, 56, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
}

.contact-page .form .title:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 35, 56, 0.4);
  color: white;
  text-decoration: none;
}

.contact-page .form .title:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b1934 0%, #cf2338 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-page .form .title:hover:before {
  left: 0;
}

/* Inner Banner Pages - Same Layout as Home */
.innerBanner {
  padding: 0px;
  margin-top: 0px;
  background-repeat: no-repeat;
  position: relative;
  /* min-height: 80vh; */
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center 60%;
}

/* Integrated Header in Inner Banner Pages */
.innerBanner .mainHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 20px 0;
  margin-bottom: 0 !important;
}

.innerBanner .mainHeader .navbar-nav > li > a {
  color: #0b1934 !important;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.innerBanner .mainHeader .navbar-nav > li > a:hover {
  color: #cf2338 !important;
}

/* Inner Banner Content Positioning */
.innerBanner > .container {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
}

/* Inner Banner Text Styling */
.innerBanner .bannerText {
  /* margin: 0px; */
  /* margin-top: -30px; */
  /* padding-top: 20px; */
  width: 100%;
  text-align: left;
  /* padding-left: 50px; */
  padding-right: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.innerBanner .bannerText h1 {
  color: #0b1934;
  word-wrap: break-word;
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: 32px;
}

.innerBanner .bannerText p {
  font-size: 16px;
  color: #0b1934;
  word-wrap: break-word;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}

/* Ensure text content stays within 50% section */
.innerBanner .col-sm-6 {
  overflow: hidden;
  word-wrap: break-word;
}

.innerBanner .col-sm-6.bannerText {
  padding-right: 15px;
}

.contact-page .form textarea {
  height: 150px;
  resize: none;
}

.teamImg,
.teamInfo {
  width: 100%;
  float: left;
}
.teamImg{

   max-height:190px;
 
}
.teamWrap .teamImg{
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition:         all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.teamWrap .teamImg:hover{
  box-shadow: 0px 20px 70px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition:         all 600ms cubic-bezier(0.77, 0, 0.175, 1);
}
.teamWrap{ width: 100%; float: left; margin-bottom: 30px;}
.teamImg img {
  border-radius: 10px;
  display: block;
  width: 100%;

}

.teamInfo {
  padding: 20px;
  text-align: center;
}

.teamInfo h2 {
  font-size: 20px;
  line-height: 31px;

  letter-spacing: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 600;
}

.teamInfo h6 {
  margin-bottom: 15px;
  margin-top: 5px;
  color: #ea4357;
  font-size: 16px;
  font-weight: 500;
}

.teamInfo p {
  font-size: 16px;
  color: #858c99;
  font-weight: 400;
}

.teamInfo .teamLinks a,
.teamInfo .teamLinks a i {
  font-size: 16px;
}

.teamInfo .teamLinks .footerSocialLinks a {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  -moz-border-radius: 100px;
  color: #fff !important;
  display: inline-block;
  line-height: 32px;
  background: #0b1934;
  margin: 0px 4px;
}
.teamInfo .teamLinks a:hover{
  background-color: #cf2338;
}

.teamInfo .footerSocialLinks a:hover:before {
    background-color: #ea4357 !important;
}
.teamInfo .footerSocialLinks a:before {
    background-color: #0c1931;
}
.teamInfo .footerSocialLinks a i {
    color:#fff;
}
.teamInfo .footerSocialLinks {
    text-align: center;
}
.teamInfo .footerSocialLinks a:before {
    position: absolute;
    content: '';
    width: 34px;
    height: 34px;
    background: #0a162f !important;
    left: 0;
    color:#fff !important;
    top: 0;
    z-index: -1;
    transition: ease-in-out 0.5s;
}

/* ========================================
   RESPONSIVE DESIGN - PRESERVING LAYOUT
   ======================================== */

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile Devices (Portrait) */
@media (max-width: 767px) {
  /* Container adjustments */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Typography scaling */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .title { font-size: 28px; }

  /* Hero Banner adjustments */
  .homeBanner {
    min-height: 60vh;
    padding: 20px 0;
  }

  .bannerText {
    text-align: center;
    padding: 20px 15px;
  }

  .bannerText h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .bannerText p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Button adjustments */
  .btn1 {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Grid system adjustments */
  .col-sm-6, .col-md-6, .col-lg-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .col-md-4 {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Service list adjustments */
  .serviceList li {
    text-align: center;
    padding: 30px 20px;
  }

  .serviceList .iconLeft {
    position: static;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Company section */
  .ourCompany {
    flex-direction: column;
  }

  .ourCompany .col-6 {
    width: 100%;
    padding: 30px 20px;
  }

  .ourCompanyInfo {
    margin-left: 0;
    padding: 30px 20px;
  }
}

/* Tablet Devices */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 750px;
  }

  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .title { font-size: 32px; }

  /* Hero adjustments */
  .bannerText h1 {
    font-size: 32px;
  }

  .bannerText p {
    font-size: 18px;
  }

  /* Grid adjustments */
  .col-md-4 {
    width: 50%;
    margin-bottom: 30px;
  }

  .col-md-6 {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* Large Tablets and Small Desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 970px;
  }

  /* Fine-tune spacing */
  .ourCompanyInfo {
    margin-left: -80px;
  }
}