/* color */
.main-bg-color{
    background-color: #6351ce;
}
.main-color{
  color: #2a3254;
}
.custom-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.custom-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(99,81,206,0.12), 0 1.5px 4px rgba(248,78,119,0.10);
}
.main-button {
  /* background: #2a3254; */
  border: none;
  /* color: #fff; */
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(99,81,206,0.08);
}
.main-button:hover {
  background:rgb(15, 34, 122);
  box-shadow: 0 4px 16px rgba(248,78,119,0.12);
}

/* navbar css */
/* default css start */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.intro-area{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Optional: style for smaller devices */
@media (max-width: 768px) {
  

  .intro-area h2 {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .intro-area {
    padding: 80px 20px;
  }

  .intro-area h2 {
    font-size: 2rem;
  }
}
/* default css end */


/* navbar regular css start */
.navbar-area {
  top: 0;
  z-index: 999;
  background: rgb(42, 50, 84);
  border-bottom: 1px solid #2a3254;
  box-shadow: 0 0 0 transparent; /* Initially no shadow */
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky state when scrolled */
.navbar-area.sticky {
  position: fixed !important;
  padding: 8px 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow when sticky */
}
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.site-logo {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.site-navbar ul li a {
  /* color: rgb(162, 162, 162); */
  color: #fff;
  padding: 10px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bolder;
}
.site-navbar ul li a:hover {
  background: white;
}
/* navbar regular css end */


/* nav-toggler css start */
.nav-toggler {
  border: 3px solid #fff;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}
.nav-toggler span, 
.nav-toggler span:before, 
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: .3s;
}
.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: '';
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
/* Basic Reset for Dropdown */
ul.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 10rem;
  background-color: rgb(42, 50, 84);
  border: 1px solid #ccc;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Show on Hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Optional: Animation */
.dropdown-menu {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* nav-toggler css end */


/* intro-area css start */
.intro-area {
  height: calc(100vh - 61px);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.intro-area h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 25px;
}
.intro-area p {
  font-size: 18px;
}
/* intro-area css end */


/* mobile breakpoint start */
@media screen and (max-width: 767px) {
  .container {
    max-width: 720px;
  }
  /* navbar css for mobile start */
  .nav-toggler{
    display: block;
  }
  .site-navbar {
    min-height: 60px;
  }
  .site-navbar ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    left: 0;
    top: 60px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #2a3254;
    background-color: rgb(42, 50, 84);
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    z-index: 999;
  }
  .site-navbar ul li {
    width: 100%;
    text-align: center;
  }
  .site-navbar ul li a {
    padding: 25px;
  }
  .site-navbar ul li a:hover {
    background-color: rgba(255,255,255,.1);
  }
  .site-navbar ul.open {
    max-height: 100vh;
    overflow: visible;
  }
  .intro-area h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }  
  /* navbar css for mobile end */
}
/* mobile breakpoint end */

.site-img-logo {
  border-radius: 10px;
  width: 100px;
  margin: 4px;
}


/* newsletter section start*/
.newsletter-section {
  background: #2a3254;
}
.newsletter-box {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(99,81,206,0.08), 0 1.5px 4px rgba(248,78,119,0.08);
}
.newsletter-form input[type="email"] {
  min-width: 220px;
  border: 1px solid #e0e0e0;
  background: #f8f9fa;
  color: #333;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus {
  border-color: #6351ce;
  outline: none;
  box-shadow: 0 0 0 2px #6351ce22;
}

/* newsletter section end*/

/* testomonial section start*/
.testimonial-section {
  background: linear-gradient(90deg, #6351ce 0%, #f84e77 100%);
}

.testimonial-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.card {
  border-radius: 1.5rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.swiper-pagination-bullet {
  background: #6351ce;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #f84e77;
}
/* testomonial section end*/

/* our client logo section start*/
.clients-logo-swiper .swiper-slide {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem 0;
  height: 100px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clients-logo-swiper .swiper-slide img {
  max-height: 60px;
  /* filter: grayscale(100%); */
  transition: filter 0.2s;
}

.clients-logo-swiper .swiper-slide img:hover {
  filter: grayscale(0%);
}
/* our client logo section end*/


/* Navigation buttons positioned outside the swiper */
.testimonial-wrapper {
  position: relative;
}

.outer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #6351ce;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: background 0.3s, color 0.3s;
}

.swiper-button-prev-custom.outer-nav {
  left: -100px;
}

.swiper-button-next-custom.outer-nav {
  right: -90px;
}

.outer-nav:hover {
  background: #f84e77;
  color: #fff;
}

@media (max-width: 768px) {
  .swiper-button-prev-custom.outer-nav,
  .swiper-button-next-custom.outer-nav {
    display: none;
  }
}
/* testomonial section end*/



/* blog section start*/
.blog-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(99,81,206,0.12), 0 1.5px 4px rgba(248,78,119,0.10);
}
.blog-card-img img {
  object-fit: cover;
  height: 220px;
  width: 100%;
}
/* blog section end*/

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 2rem; */
}

/* home page css */
.about-tabs-section html {
    scroll-behavior: smooth;
}

.about-tabs-section .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.about-tabs-section .nav-pills .nav-link.active {
    font-weight: bold;
    border-left: 2px solid #000;
    background-color: transparent;
    color: #2a3254;
}

.about-tabs-section .section-heading {
    font-weight: bold;
}

@media (max-width: 768px) {
    h1.banner-title {
        font-size: 20px;
        /* adjust as needed */
    }
}
/* end home page */



 /* === Gallery Overlay Styles === */
  .gallery-overlay {
      display: none;
      position: fixed;
      z-index: 1050;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      align-items: center;
      justify-content: center;
      overflow: auto;
      transition: opacity 0.3s ease;
  }

  .gallery-overlay img.gallery-overlay-img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
      object-fit: contain;
  }

  .gallery-overlay .gallery-close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2.5rem;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      z-index: 1100;
      user-select: none;
  }

  .gallery-img-fixed {
      width: 100%;
      /* height: 250px; */
      height: 347px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
  }

  .gallery-img-fixed:hover {
      transform: scale(1.05);
  }

  .image-hover {
      transition: transform 0.3s ease-in-out;

  }

  .image-hover:hover {
      transform: scale(1.05);
      cursor: zoom-in;
  }