@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary-color: #1c83fe;
  --secondary-color: #002d94;
  --default-color: #292929;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: "Open Sans", sans-serif;

  font-style: normal;
  pointer-events: auto; /* ensure clicks work */
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--default-color);
}

.container {
  position: relative;
}

main.main {
  position: relative; 
  overflow: hidden; 
}
img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 16px;
  line-height: 1.6em;

  margin: 0;
}


#hero {
  background-color: #000 !important; 
  overflow: hidden;
}

#hero img,
#hero video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);

  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
  width: 250px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-right: 35px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    overflow: visible;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu a.active {
    color: #ffffff;

    background: var(--primary-color);
  }
  .navmenu a.active:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  .navmenu a,
  .navmenu a:focus {
    padding: 6px 15px;
    font-size: 16px;
    color: var(--default-color);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.9px;
  }

  .navmenu a:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu .custom-width ul {
    width: 128px;
  }

  .navmenu .dropdown ul {
    border-top: 2px solid var(--primary-color);
    margin: 0;

    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    font-weight: 300;
    border-bottom: 1px solid #ffffff36;
  }

  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition:
      transform 0.3s ease,
      color 0.3s ease;
    margin-right: 27px;
  }

  .mobile-nav-toggle:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 15px 20px 15px;
    padding: 15px 0;
    margin: 0;
    border-radius: 20px;
    background: #fff; 
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: visible;
    transition: all 0.35s ease-in-out;
    z-index: 9998;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--accent-color);
    font-weight: 400;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--accent-color);
    padding: 14px 22px;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    
    transition: all 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(248, 249, 250, 0.15);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 12px 0;
    margin: 12px 20px;
    background: rgba(248, 249, 250, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease-in-out;
    color: var(--text-color);
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(16, 36, 76, 0.05);
    margin-left: 10px;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 36px;
    top: 16px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    transform: rotate(90deg);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    overflow: visible;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px) saturate(180%);
    transition: all 0.35s ease-in-out;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    max-height: 80vh;
    overflow-y: auto; 
    padding-right: 10px; 
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px), (max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--primary-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.3s;
  margin: 10px;
  border-radius: 5px;
  color: var(--contrast-color);
  background: var(--primary-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, white 15%);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--primary-color);
}


.navmenu .dropdown:hover ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition:
    opacity 0.3s ease,
    top 0.3s ease;
}


.navmenu .dropdown ul li {
  opacity: 0;
  transform: translateY(15px);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    rotate 0.5s ease;
}


.navmenu .dropdown:hover ul li {
  opacity: 1;
  transform: translateY(0) rotate(0) scale(1) skewX(0);
}

.navmenu .dropdown ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color:var(--default-color);
  font-weight: 500;
  position: relative;
  background: none; /* No background initially */
  transition:
    color 0.3s ease-in-out,
    background 0.4s ease-in-out;
  border-bottom: 1px solid #bfbfbf;
}

.navmenu .dropdown ul li:last-child a {
    border-bottom: none;
}
.navmenu .dropdown ul li a:hover {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  color: #fff !important;
  transition: background-position 0.4s ease-in-out;
}

.header.sticky {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.banner-img.img1 {
  background-image: url("../gallery/banner1.jpg");
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 75px;
  padding-top: 0px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.banner-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Text overlay */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10; /* above image */
  pointer-events: auto; /* clickable */
}

.banner-text h2 {
  color: #fff;
  font-size: 4.5rem;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
}

.banner-text h3 {
  font-size: 2.5rem;
  color: #fff;
}







button:hover:before,
button:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #fff;
}


.arrow-btn .arrow {
  display: inline-block;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}


.arrow-btn:hover .arrow {
  transform: rotate(0deg);
}





/*--------------------------------------------------------------
# Floating Phone Icon
--------------------------------------------------------------*/
.tel-icon {
  position: fixed;
  right: 15px;
  bottom: 75px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.tel-icon img {
  width: 60%;
  height: 60%;
  pointer-events: none;
}



.breadcrumb-section {
  position: relative;
  background-image: url("../gallery/c-page.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 110px;
}

.breadcrumb-section h1 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* Breadcrumb styles */
.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1px;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.breadcrumb li::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}

.breadcrumb li:last-child::after {
  content: "";
  display: none;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-path a {
  color: #fff;
}

.breadcrumb-path {
  padding: 3px 10px;
}

.ip-page {
  position: relative;
  
}

.breadcrumb li:not(:last-child) a {
  background-color: var(--primary-color);
}

.c-map {
  position: relative;
  padding-top: 65px;
}

.c-map iframe {
  border: 8px solid #ffffff82;
  box-shadow: 0 10px 10px #525fe242;
}


/* -----------------------------
   Form Styles
------------------------------*/
.query-form {
  width: 100%;
}

.query-row {
  margin-bottom: 20px;
}

.query-form input,
.query-form select,
.query-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d7dce5;
  background: #f9f9f9;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.query-form input:focus,
.query-form select:focus,
.query-form textarea:focus {
  background: #fff;
  border-color: #525fe2;
  box-shadow: 0 0 8px rgba(82, 95, 226, 0.2);
}

/* -----------------------------
   Button
------------------------------*/
.query-btn {
  margin: auto;
  padding: 14px 20px;
  background: linear-gradient(45deg, transparent, #3746d7);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(82, 95, 226, 0.3);
}

.query-btn:hover {
  background: #414ecb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(82, 95, 226, 0.35);
}

/* -----------------------------
   Animation
------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------
   Responsive
------------------------------*/
@media (max-width: 480px) {
  .query-container {
    padding: 25px 20px;
  }

  .query-title {
    font-size: 26px;
  }
}

.tp-blk {
  position: relative;
  margin-top: 25px;
}
.tp-blk a {
  font-size: 15px;
}

.ip-page-serv p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ip-page-serv h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.ip-page-serv h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.ip-page-serv ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}

.ip-page-serv ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #333;
}

.ip-page-serv ul li::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f46e5;
  font-weight: bold;
  font-size: 14px;
}


.disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.disclaimer-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.disclaimer-text a {
  color: #fff;
}

.disclaimer-text a:hover {
  color: var(--primary-color);
}


.sms-checkbox {
  width: 18px !important;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5;
  margin-top: 3px;
}


.error-msg {
  color: #d9534f;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}


.input-error {
  border-color: #d9534f !important;
  background: #ffeaea !important;
}


#checkboxError {
  margin-left: 28px;
}

.mv-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;

  margin: 40px 0;
}

.mv-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  width: 330px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
}

.mv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9fa7f9, var(--secondary-color));
  color: #fff;
  font-size: 40px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.mv-card h3 {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 2px dashed var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.mv-card p {
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.staffing-sec {
  position: relative;
  margin-bottom: 100px;
}

.staff-blk {
  padding-top: 55px;
}

.staff-sol-blk {
  background: linear-gradient(to right, #6b78f9, #3843b5);
  text-align: center;
  padding: 25px 2px 2px;
  border-radius: 30px;

  text-align: center;
  padding: 25px 2px 2px;
  border-radius: 30px;
}
.staff-sol-blk .title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 10px 20px;
}
.staff-sol-blk .staff-content {
  background-color: #fff;
  padding: 35px 20px 20px;
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 1;
}

.staff-sol-blk .staff-content:after {
  content: "";
  background: linear-gradient(
    to right bottom,
    var(--primary-color),
    var(--primary-color)
  );
  height: 15px;
  width: 30px;
  border-radius: 0 0 200px 200px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.staff-sol-blk .staff-content:after {
  background: #fff;
  height: 50px;
  width: auto;
  border-radius: 0;
  transform: translateX(0);
  left: -2px;
  right: -2px;
  z-index: -1;
}

.staff-sol-blk .description {
  color: var(--default-color);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

@media only screen and (max-width: 990px) {
  .staff-sol-blk {
    margin: 0 0 30px;
  }
}


.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #fff;
}


.breadcrumb li::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}

.breadcrumb li:last-child::after {
  content: "";
  display: none;
}


.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
  padding: 5px 10px;
}

.breadcrumb li a:hover {
  color: #fff;

  background-color: var(--secondary-color);
}

.footer-credits .footer-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.animated-text .word {
  display: inline-block;
  opacity: 0;
  animation: slideIn 0.8s forwards ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(var(--start));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.connect-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 4px 23px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 400;
  transition: all 0.3s ease;
  font-family: "SerifItalic", serif;
}

.connect-btn:hover {
  background: #fff;
  color: var(--secondary-color);
}
@font-face {
  font-family: "SerifItalic";
  src: url("../fonts/Serif-Italic.ttf.eot");
  src:
    url("../fonts/Serif-Italic.ttf.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Serif-Italic.ttf.woff") format("woff");

  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

.animated-text .highlight {
  font-family: "SerifItalic", serif;
  font-size: 65px;
}
.word {
  display: inline-block;
  opacity: 0;
  animation: slideIn 0.8s forwards ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(var(--start));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#header {
  background: transparent;
  transition: background-color 0.3s ease;
}

body.scrolled #header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.swiper-wrapper {
  border-radius: 53px;
  overflow: hidden;
}


.connect-btn .arrow {
  display: inline-block;
  transform: rotate(-45deg); /* default: 45deg tilt */
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}


.connect-btn:hover .arrow {
  transform: rotate(0deg);
}

.abt-sec {
  position: relative;
  margin-bottom: 25px;
}

.abt-sec p {
  text-align: justify;
  line-height: 29px;
}

.abt-l-img img {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -8px);
  }
  50% {
    transform: translate(10px, 0);
  }
  75% {
    transform: translate(5px, 8px);
  }
}

.t-top h3 {
  font-size: 25px;
  position: relative;
  display: inline-block;
  font-family: "SerifItalic", serif;
}

.t-top h3::before {
  content: "";
  position: absolute;
  height: 38px;
  width: 45px;
  border: 2px solid var(--secondary-color);
  left: -6px;
  top: -3px;

  border-right: 0px;
  border-bottom: 0;
}

.t-top h3::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: -10px;
  background-color: var(--secondary-color);
  top: -8px;
  z-index: -1;
  border-radius: 23%;
}

.t-btm h1 {
  display: inline-block;
  position: relative;
  font-size: 85px;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 72px;
  margin-bottom: 0px;
}

.t-btm h4 {
  font-size: 37px;
}

.read-more-btn {
  margin-top: 5px;
  display: inline-block;
  padding: 3px 21px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1c83fe;
  border: 2px solid #1c83fe;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}


.read-more-btn::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #1c83fe;
  border-radius: 50%;
  left: 50%;
  top: -280px;
  transform: translateX(-50%);
  z-index: -1;
  transition: 0.7s ease;
}

.read-more-btn:hover::before {
  top: -60px;
}

.read-more-btn:hover {
  color: #fff;
}

.serv-sec {
  position: relative;
}

.t-btm h2 {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 45px;
  margin-bottom: 0px;
  line-height: 37px;
  text-transform: uppercase;
  font-weight: 600;
}
.serv-img-blk {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 45px;
}


.serv-img-blk::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 200px;
  background: rgba(255, 255, 255, 0.7);
  transform: skew(-20deg);
  box-shadow: 0 0 100px #fff;
  transition: all 0.6s ease;
  z-index: 3;
}

.serv-img-blk:hover::before {
  left: 200%;
}


.serv-img-blk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #002d94;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.serv-img-blk:hover::after {
  opacity: 0.85;
}

.serv-img img {
  width: 100%;
  display: block;
}

.serv-txt {
  position: absolute;
  left: 15px;
  bottom: 0px;
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  transition: transform 0.4s ease;
}


.serv-img-blk:hover .serv-txt {
  transform: translateY(-15px);
}


.serv-txt h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15; 
  margin: 0;
}


.read-more {
  display: inline-block;
  margin-top: 2px;

  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  padding: 2px 5px;
  border-radius: 5px;
  background: transparent;

  opacity: 0;
  transform: translateY(10px);

  transition: all 0.4s ease;
}


.serv-img-blk:hover .read-more {
  opacity: 1;
  transform: translateY(0);
}


.read-more:hover {
  color: var(--secondary-color);
  background: #fff;
}

.serv-main-blk {
  position: relative;
  padding-top: 75px;
}

.gallery-marquee {
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  margin: 20px 0;
}

.track {
  display: flex;
  gap: 25px;
  width: max-content;
}

.track img {
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.clients-sec {
  position: relative;
  padding-bottom: 75px;
}

/* TOP ROW : LEFT */
.track.left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.track.right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Optional */
.track:hover {
  animation-play-state: paused;
}

.ctitle {
  position: relative;
  margin-bottom: 45px;
}
.ctitle h3 {
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
  padding: 10px 0;
}

.clients-sec {
  position: relative;
  overflow: hidden;
}

.clients-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;

  left: 50%;
  top: 60%; 
  transform: translate(-50%, -50%);
  background: url("../gallery/g-map.png") center/contain no-repeat;

  opacity: 0.3; /* Adjust as needed */
  z-index: 0;
}

.clients-sec > * {
  position: relative;
  z-index: 1;
}

body.index-page {
  background: url("../gallery/bg.jpg") center center / cover no-repeat fixed;
}

.car-mblk {
  position: relative;
}

.car-txt p {
  margin-bottom: 10px;
  text-align: justify;
  line-height: 29px;
}

.car-txt {
  position: relative;
  margin-top: 25px;
}

.career-sec {
  position: relative;
  padding-bottom: 25px;
}

.partner-sec {
  position: relative;

  padding: 197px 0;
}

.partner-sec {
  position: relative;
  overflow: hidden;
}


.partner-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--secondary-color);
  z-index: 1;
}

/* Background image */
.partner-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/pbg.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: 2;
}


.partner-sec > * {
  position: relative;
  z-index: 3;
}
.partner-tit h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
}
.partner-tit p {
  color: #fff;
  padding: 0 85px;
  font-size: 16px;
  line-height: 29px;
}

.partner-tit span {
  font-size: 84px;
}

.reviews {
  padding: 75px 0;
}

.review {
  padding: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #dde6f5;

  border: 1px solid #e8eefc;

  border-radius: 20px;

  margin-bottom: 20px;

  transition: 0.4s ease;
}

.review:hover {
  background: #ffffff;

  border-color: #d5e2ff;

  transform: translateX(15px);

  box-shadow: 0 15px 40px rgba(28, 131, 254, 0.08);
}

.rate {
  color: #ffb400;

  font-size: 18px;

  margin-bottom: 15px;

  letter-spacing: 3px;
}

.left p {
  max-width: 750px;

  font-size: 20px;

  line-height: 1.7;

  color: #49566b;
}

.right {
  text-align: right;
}

.right h4 {
  font-size: 22px;

  font-weight: 600;

  color: #002d94;

  margin-bottom: 5px;
}

.right span {
  display: block;

  color: #6c7b94;

  font-size: 15px;
}

.right small {
  color: #1c83fe;

  font-weight: 500;
}

@media (max-width: 991px) {
  .review {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .right {
    text-align: left;
  }
}

.rblk {
  position: relative;
  margin-top: 75px;
}

.t-btm p {
  margin-top: 8px;
  padding: 0 85px;
  font-size: 16px;
  line-height: 29px;
}

.footer {
  color: #ffffff;
  padding: 60px 0 20px;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
}
.footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Color Overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color); 
  z-index: -2;
}

/* Background Image */
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../gallery/fb.jpg") center center/cover no-repeat;
  opacity: 0.15; 
  z-index: -1;
}


.footer > * {
  position: relative;
  z-index: 1;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 1px solid rgb(255 255 255 / 27%);
  padding: 10px 0px;
  background: #1c83fe2b;
  padding-left: 16px;
}

.footer-column p {
  color: #fff;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  padding: 12px 20px;
  border: none;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.newsletter-form button:hover {
  background: #1d4ed8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #2563eb;
}

.footer-bottom {
  width: 90%;
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 5px;
  }
}

.footer-column p {
  margin-bottom: 15px;
  color: #fff;
}

.footer-column p i {
  color: #fff;
  min-width: 18px;
  margin-top: 4px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  margin-bottom: 12px;
}

.footer-services li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.footer-services li a i {
  color: #fff;
  font-size: 12px;
}

.footer-services li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.chat-toggle {
  position: fixed;
  left: 20px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.chat-toggle i {
  color: #fff;
  font-size: 32px;
}

.chatbot {
  position: fixed;
  left: 20px;
  bottom: 95px;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 0.3s ease;
}

.chatbot.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background: var(--primary-color);
  color: #fff;
  padding: 4px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.chat-body {
  padding: 20px;
}

.chat-body p {
  font-size: 14px;
  color: #555;
}

.chat-body textarea {
  width: 100%;
  height: 90px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  resize: none;
  outline: none;
  margin-top: 50px;
}

.send-btn {
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 576px) {
  .chatbot {
    width: calc(100% - 30px);
    left: 15px;
  }

  .chat-toggle {
    left: 15px;
  }
}

.footer-column h4 {
  color: #fff;
  font-size: 18px;
}

.contact-section {
  padding: 80px 0;
}

.contact-left {
  background: #0f172a;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

.contact-left p{
  color: #fff;
  margin-bottom: 25px;
}

.contact-heading {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
      font-family: "SerifItalic", serif;
}

.contact-box {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box:last-child {
  border-bottom: 0;
}

.contact-box h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-box a,
.contact-box p {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  margin: 0;
}

.address-card {
  margin-top: 25px;
  overflow: hidden;
  border-radius: 12px;
  background: #0d6efdab;
}

.address-content {
  padding: 20px;
}

.address-content h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.address-content p {
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.map-wrapper iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

.contact-form-wrap {
  padding: 50px;
  background: #1c83fe14;
  border-radius: 20px;

}

.contact-form-wrap h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--default-color);

}
.contact-form-wrap p{
    margin-bottom: 25px;
}

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

.form-control-custom {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.textarea-control {
  height: 180px;
  padding-top: 18px;
  resize: none;
}

.submit-btn {
  background: var(--primary-color);
  color: #fff;
  border: 0;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #1e293b;
}

.contact-left {
  position: relative;
  padding: 50px 40px;
  border-radius: 20px;
  overflow: hidden;
  background: url("../gallery/cpage-bg.jpg") center center / cover no-repeat;
}

.contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
}

.contact-left > * {
  position: relative;
  z-index: 1;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-box .icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  flex-shrink: 0;
  border-radius: 50%;
}

.contact-box h5 {
  margin: 0 0 5px;
  font-size: 18px;
}

.contact-box a {
  color: #fff;
  text-decoration: none;
}


.error{
    color:#ff3b30;
    font-size:13px;
    margin-top:5px;
    display:block;
}

.form-control-custom.invalid{
    border:1px solid red;
}

.contact-btm-img{
  position: relative;
}

.contact-btm-img img{
  width: 100%;
}

.ip-m-blk p{
      text-align: justify;
    line-height: 29px;
    margin-bottom: 15px;
}

.qa-offerings {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qa-offerings li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.qa-offerings li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.ip-m-blk h3{
  font-size: 25px;
  font-weight: 600;
  color: var(--secondary-color);
}

.footer-bottom p a{
  color:#fff;
}

.footer-bottom p a:hover{
  background-color: var(--primary-color);
}