/* Author: Vaibhav Suryawanshi */
/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

marquee {
  color: #003366;
  font-size: 34px;
  margin-bottom: 20px;
}

marquee .title-img {
  margin-left: 4px;
  width: 152px;
  height: auto;
  margin-bottom: 11px;
}

.mattroi-info p {
  text-align: left;
}

/* ===== Navbar ===== */
header {
  /* background: #003459; */
  /* background: linear-gradient(135deg, #2f4e74, #3f6fa0); */
  background: #ffffff;
  padding: 0px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.logo img {
  height: 80px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 0;
}

.nav-links a {
  color: #003459;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #fbb03b;
}

/* ===== Hero ===== */
/* .hero {
    background: linear-gradient(to right, #003459, #007EA7);
    color: #FFFFFF;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  .btn {
    background: #FBB03B;
    color: #003459;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #ED1C24;
    color: #FFFFFF;
  } */

section h3 {
  color: #fbb03b;
}

/* ===== Hero Section ===== */
#hero {
  /* display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #f8f9fa;
  flex-wrap: wrap;
  gap: 40px; */
  padding: 0;
  margin-bottom: 30px;
}

.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* gap: 30px; */
  /* max-width: 1200px; */
  width: 100%;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #003366;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.hero-content .btn {
  background: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background: #0055aa;
}

/* ===== Slider ===== */
/* Hero Section */
.hero {
  width: 100%;
  position: relative;
}

.hero-wrapper {
  width: 100%;
  position: relative;
}

/* Slider Container */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 1px;
  overflow: hidden;
  background: #000;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide {
  flex: 0 0 100%; /* exactly 100% width */
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Banner Text overlay */
.banner-text {
  color: #fff;
  /* color: #fbb03b; */
  /* font-size: 30px; */
  position: absolute;
  bottom: 20%;
  right: 0;
  text-transform: uppercase;
  padding: 10px;
  text-align: right;
  width: 80%;
  background: linear-gradient(
    102deg,
    rgba(0, 52, 89, 0) 0%,
    rgba(0, 52, 89, 0.8) 50%,
    rgba(0, 52, 89, 1) 100%
  );
  padding: 20px 30px 20px 50px;
  animation: fadeIn 1.2s ease-out forwards;

  
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.4;
  max-width: 80%;   
  margin: 0 auto;    
  text-align: right;  
  word-break: normal;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slides */

/* Controls */
.hero-slider .prev,
.hero-slider .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  margin-top: -22px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-slider .prev {
  left: 10px;
}

.hero-slider .next {
  right: 10px;
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background: #003366;
}

/* ===== Sections ===== */
section {
  padding: 50px 40px 0px 40px;
  /* padding: 50px 40px; */
  text-align: center;
  margin: 0px 0 20px 0;
}

.mattroi-info {
  background: #fbb03b1a;
  font-size: 18px;
  padding: 20px 40px 40px 40px;
}

.about {
  padding: 20px 40px 40px 40px;
}

#solutions,
.values {
  padding: 50px 40px 40px 40px;
  background: #fbb03b1a;
}

#expertise {
  margin-bottom: 40px;
}

#expertise > p,
#clients > p {
  text-align: center;
}

.testimonial-slide p {
  text-align: right !important;
}

h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #003459;
}

.grid {
  text-align: left;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  margin-top: 30px;
}

.grid div {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.grid div:hover {
  transform: translateY(-5px);
}

/* ===== Clients / Testimonials ===== */
/* Container */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Slide wrapper */
.testimonial-slide {
  display: none;
  width: 100%;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 1s;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

blockquote {
  font-style: italic;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #39b54a;
  margin: 20px auto 0px auto;
  width: 80%;
  border-radius: 5px;
  text-align: left;
}

blockquote + p {
  text-align: right;
  margin: 6px auto 20px auto !important;
  width: 80%;
}

/* ===== Contact ===== */
.contact-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}
.btn {
  background: #003366;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn:hover {
  background: #0055aa;
}
.form-msg {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

/* ===== Footer ===== */
/* ===== Footer ===== */
.site-footer {
  /* background: #003366; */
  /* background: linear-gradient(135deg, #2f4e74, #3f6fa0); */
  color: #003459;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-bottom p {
  background: #003459;
  margin: 0;
  padding: 20px;
  color: #ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  /* max-width: 1200px; */
  /* margin: 0 auto;
  padding: 50px 20px 20px; */
  padding: 40px 0px 20px;
  margin: 0px 40px;
  /* border-top: 1px solid #003459; */
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 2px solid #0055aa;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  background: #ffffff;
  color: #003459;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fbb03b;
}

.footer-col p {
  background: #ffffff;
  color: #003459;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.footer-col p:hover {
  color: #fbb03b;
}

/* Social Icons */
.social-icons a img {
  width: 32px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 0px;
  border-top: 1px solid #003459;
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}

/* Responsive Layouts */

/* Tablets: Show 2 columns */
@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

/* Mobiles: Full stack */
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Scroll Animation ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About Section ===== */
#about {
  background: #f8f9fa;
}

.about p,
.expertise p,
.clients p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin: 36px 0px 50px 0px;
  text-align: left;
}

.about p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0px 0px 25px 0px;
}

#expertise .grid {
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#solutions .grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#expertise .grid p {
  margin: 16px 0px 0px 0px;
  text-align: center;
}
.customer-para {
  font-size: 20px !important;
}

.values p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0px 0px 0px 0px;
}

#solutions img,
.values img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.about-card {
  flex: 1;
  min-width: 300px;
  /* background: white; */
  color: #ffffff;
  background: #00bcd4;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.about-card ul {
  padding-left: 7px;
}

.about-card li {
  padding: 0;
  font-size: 18px;
  /* color: #333; */
  color: #ffffff;
  margin-bottom: 15px;
  list-style: disc;
}

.about-card li:last-child {
  margin-bottom: 0px;
}

.about-card li:last-child {
  border-bottom: none;
}

/* ===== Slide Animations ===== */
.slide-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.slide-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* USP Section */
#usp {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

#usp .section-title {
  /* font-size: 28px; */
  margin-bottom: 30px;
  color: #003366;
}

.usp-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.usp-item {
  /* flex: 1 1 200px;
  max-width: 220px;
  height: 220px; */
  flex: 1 1 245px;
  max-width: 245px;
  height: 145px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  /* border: 2px solid #003366; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #003366;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover animation: lines from left + right */
.usp-item::before,
.usp-item::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 0;
  background: #ffd800; /* highlight color */
  top: 0;
  transition: width 0.4s ease;
}

.usp-item::before {
  left: 0;
}

.usp-item::after {
  right: 0;
}

.usp-item:hover::before,
.usp-item:hover::after {
  width: 100%;
}

/* Slight zoom on hover */
.usp-item:hover {
  /* transform: translateY(-5px); */
}

/* Zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.usp-item {
  opacity: 0; /* start hidden */
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.usp-item.show {
  animation: zoomIn 0.6s ease forwards;
}

/* ===== Map Section ===== */
.map-icon {
  margin-right: 8px;
  width: 20px;
  vertical-align: sub;
}
#presence {
  padding: 60px 40px 0px 40px;
  /* background: #f8f9fa; */
  background: #fbb03b1a;
  margin: 0;
}

.section-title {
  /* font-size: 28px; */
  margin-bottom: 30px;
  color: #003366;
}

.mapnewwrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.mapwrapper {
  /* position: relative;
    max-width: 500px;
    flex: 1; */
  width: 42%;
  margin: 0 auto;
  position: relative;
}

.map-img {
  width: 100%;
  /* height: auto; */
}

.locationpinblk .icon-location {
  position: absolute;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.locationpinblk .icon-location span {
  position: absolute;
  top: -25px;
  left: 15px;
  background: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Pin animation */
.locationpinblk .current-locations:after {
  content: "";
  border-radius: 50%;
  background-color: #ffd800;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -8px;
  left: -8px;
  opacity: 0.6;
  animation: blink 2s infinite ease-in-out;
  z-index: 0;
}

.locationpinblk .current-locations:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ffd800;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 1;
}

@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
}

/* Location List */
.map-loc-listblk {
  flex: 1;
  min-width: 250px;
  text-align: left;
  margin-left: 125px;
  margin-top: 6%;
}

.map-loc-listblk .loc-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.map-loc-listblk ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.map-loc-listblk ul li {
  padding: 3px 0;
  /* border-bottom: 1px solid #ddd; */
  font-size: 20px;
}

.map-loc-listblk .disclaimer {
  font-size: 11px;
  color: #808080;
  text-align: center;
}

.amritsar {
  top: 27%;
  left: 28%;
}
.raipur {
  top: 51%;
  left: 51%;
}
.mumbai {
  top: 55%;
  left: 18%;
}
.delhi {
  top: 32%;
  left: 33%;
}
.bangalore {
  top: 68%;
  left: 31%;
}
.chennai {
  top: 71%;
  left: 42%;
}
.kolkata {
  top: 48%;
  left: 70%;
}
.hyderabad {
  top: 59%;
  left: 40%;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* width: 50px;
    height: 50px;
    background: #003366; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.3); */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

#scrollTopBtn img {
  width: 40px;
  height: 40px;
  animation: bounce 1.5s infinite;
  /* makes arrow white */
  /* filter: invert(1); */
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Show button when active */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.bannerimg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
}

.inner-banner .bannerimg {
  height: auto;
}

.bannerimg {
  position: relative;
}

.img-responsive {
  width: 100%;
}
img {
  vertical-align: middle;
  border-style: none;
}

.banner-wrapper {
  padding: 0;
}

.mob-img {
  display: none !important;
}

.inner-bannertxt-blk {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 0;
  max-width: 90%;
  background: linear-gradient(
    102deg,
    rgba(7, 98, 195, 1) 0%,
    rgba(7, 98, 196, 1) 50%,
    rgba(7, 98, 195, 0) 100%
  );
  padding: 20px 60px 20px 40px;
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.banner-heading {
  font-size: 40px;
  line-height: 42px;
  color: #0efcff;
  text-transform: uppercase;
  /* font-family: "Lato-Black"; */
}

.inner-banner {
  position: relative;
  margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .contact-us-sect .container {
    max-width: 1140px;
  }
}
@media (min-width: 992px) {
  .contact-us-sect .container {
    max-width: 960px;
  }
}
@media (min-width: 768px) {
  .contact-us-sect .container {
    max-width: 720px;
  }
}
@media (min-width: 576px) {
  .contact-us-sect .container {
    max-width: 540px;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.contact-us-sect .container {
  width: 92%;
  margin: 0 auto;
  max-width: 92%;
  padding: 0;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-word-break: keep-all;
  word-break: keep-all;
  -webkit-word-break: keep-all;
  -moz-word-break: keep-all;
  word-wrap: break-word;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.cs_tabs ul {
  flex-wrap: inherit;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
ol,
ul {
  list-style: none;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.cs_tabs ul {
  flex-wrap: inherit;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.cs_tabs .tab-content {
  /* border: solid 1px #dee2e6; */
  border-top: 0px;
  /* padding: 25px; */
  padding-bottom: 10px;
}

.tab-content > .tab-pane {
  /* display: none; */
}

.fade:not(.show) {
  opacity: 0;
}
.fade {
  transition: opacity 0.15s linear;
}

.contact-us-blk {
  margin-bottom: 60px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.m-0 {
  margin: 0 !important;
}

.contact-left {
  width: 40%;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.contact-infoblk {
  margin-top: 20px;
}

.contact-inner-blk {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  margin-right: 5px;
  transform: scale(0.8);
  width: 25px !important;
}

.contact-txtblk {
  width: 98%;
}

.place-icon {
  background-position: -740px -406px;
  width: 18px;
  height: 22px;
}
.contact-icon {
  margin-right: 5px;
  transform: scale(0.8);
  width: 25px !important;
}
.sprite {
  background: url(../images/sprite.png) no-repeat top left;
}

.contact-right {
  width: 55%;
}

.contact-form-wrap {
  position: relative;
  padding: 50px;
  background: #004c8d url(../images/contact-bg.png) center no-repeat;
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.enquire-ttl {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 500;
}

.enquire-form .form-group {
  margin-bottom: 25px;
}

.enquire-form .form-control {
  background: transparent;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 0;
  border: none;
  color: #fff;
  padding-left: 0;
}

.enquire-form .form-control::placeholder {
  color: #fff;
}
.form-control {
  font-size: 14px;
  font-weight: 400;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 768px) {
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#gencntt {
  display: none;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #513857;
  line-height: 1.5;
  font-weight: 500;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-ttl {
  text-transform: capitalize;
  line-height: 29px;
  margin: -4px 0px 6px 0px;
}

.contact-ttl {
  font-size: 16px;
  line-height: 16px;
  color: #004793;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
}

.enquire-btnblk .btn {
  background: #fff;
  color: #004793;
  margin-top: 0;
  width: 120px;
  text-align: center;
  border-radius: 5px;
  padding: 12px 15px;
  margin-left: 15px;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
.btn-primary {
  background: #3b8ac6;
  border: 1px solid #3b8ac6;
  text-align: left;
  transition: 0.5s ease all;
}
.btn {
  border: 1px solid #513857;
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  position: relative;
  background: #3b8ac6;
  border-radius: 5px;
  margin-top: 30px;
}

/* Wrapper for animation */
.bannerimg.animation-img img {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: revealDown 1.5s ease-out forwards;
}

/* Keyframes for reveal */
@keyframes revealDown {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  25% {
    opacity: 0.3;
    clip-path: inset(0 0 75% 0);
  }
  50% {
    opacity: 0.6;
    clip-path: inset(0 0 50% 0);
  }
  75% {
    opacity: 0.8;
    clip-path: inset(0 0 25% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.bannerimg.animation-img .desk-img {
  animation-delay: 0.2s;
}

.bannerimg.animation-img .mob-img {
  animation-delay: 0.5s;
}

.team {
  padding: 0px 40px 0px 40px;
}

/* Initial hidden state */
.solutions .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.solutions .grid > div {
  opacity: 0;
  transition: all 0.8s ease;
}

/* initial shifted positions */
.solutions .grid > div:nth-child(1),
.solutions .grid > div:nth-child(2) {
  transform: translateX(-40px); /* right */
}
.solutions .grid > div:nth-child(3),
.solutions .grid > div:nth-child(4) {
  transform: translateX(40px); /* left */
}

/* final state when in view */
.solutions.animate-in .grid > div {
  opacity: 1;
  transform: translateX(0);
}

.solutions .grid div:hover {
  transform: translateY(-5px);
}

/* stagger effect */
.solutions.animate-in .grid > div:nth-child(1) {
  transition-delay: 0.1s;
}
.solutions.animate-in .grid > div:nth-child(2) {
  transition-delay: 0.3s;
}
.solutions.animate-in .grid > div:nth-child(3) {
  transition-delay: 0.5s;
}
.solutions.animate-in .grid > div:nth-child(4) {
  transition-delay: 0.7s;
}

.solutions .grid div:hover img {
  filter: drop-shadow(0 0 2px rgba(230, 153, 160, 0.3))
    /* very faint background glow */ invert(8%) sepia(48%) saturate(4249%)
    hue-rotate(342deg) brightness(85%) contrast(97%);
  transition: all 0.4s ease;
}

.values .grid div:hover img {
  filter: drop-shadow(0 0 2px rgba(230, 153, 160, 0.3))
    /* very faint background glow */ invert(8%) sepia(48%) saturate(4249%)
    hue-rotate(342deg) brightness(85%) contrast(97%);
  transition: all 0.4s ease;
}

/* Fly-in from top animation */
@keyframes flyInTop {
  0% {
      opacity: 0;
      transform: translateY(-100px) scale(0.95);
  }
  60% {
      opacity: 1;
      transform: translateY(10px) scale(1.02);
  }
  80% {
      transform: translateY(-5px) scale(0.98);
  }
  100% {
      transform: translateY(0) scale(1);
  }
}

.fly-in-top {
  opacity: 0;
  transform: translateY(-100px) scale(0.95);
  /* Remove these lines
  animation-name: flyInTop;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  */
}

.fly-in-top.visible {
  animation-name: flyInTop;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  width: fit-content;
}



/* Optional: section styling */
.vision-mission {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: left;
}

.vision-mission p {
  font-size: 18px;
  text-align: left;
}

.vision-mission .container {
  display: flex;
}

.divider {
  width: 2px;
  background-color: #003459; /* vertical line color */
  margin: 0 30px;
}

html,
body {
  overflow-x: hidden; /* prevent horizontal scroll */
  overflow-y: auto; /* allow vertical scroll */
  scroll-behavior: smooth; /* smooth scroll for anchors */
}

/* For Webkit browsers (Chrome, Edge, Safari) */
/* body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
  background: #495057;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #495057;
} */

/* ===========================
   Raleway Font Faces
=========================== */

/* Raleway Regular */
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

/* Raleway Medium */
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

/* Raleway Semibold */
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

/* ===========================
 Apply Fonts to Headings
=========================== */

/* H1 uses Semibold */
marquee {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
