/********** Template CSS **********/
:root {
  --primary: #023b68;
  --secondary: #f6f6f6;
  --light: #ffffff;
  --dark: #152440;
}

h1,
h2,
.font-weight-bold {
  font-weight: 600 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 500 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.py-5 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.btn {
  
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: var(--primary);
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  
  padding: 35px 15px;
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 36, 64, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    height: 380px;
}

.service-item h3 {
    min-height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

.service-item p {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

.service-item .btn {
    margin-top: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-item {
        height: auto;
        min-height: 350px;
        padding: 25px 15px;
    }
    
    .service-item h3 {
        min-height: auto;
        margin-bottom: 15px !important;
    }
}

/* .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -50px;
  left: 0;
  background: var(--light);
  border-radius: 100% 100% 0 0;
  box-shadow: 0px -10px 5px #eeeeee;
  transition: all 0.5s ease;
} */

.service-item:hover::after {
  bottom: -25px;
}

.service-item:hover p {
  margin-bottom: 25px !important;
}

.team-item img {
  width: 300px;
  transition: 0.5s;
}

.team-item:hover img {
  margin-left: 0;
}

.team-item .team-text {
  left: -100%;
  transition: 0.5s;
}

.team-item .team-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: -60px;
  margin-top: -30px;
  border: 30px solid;
  border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
  left: 0;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.logo img {
  width: 180px;
}

.img1 {
  width: 90%;
}

.banner {
  position: relative;
  background: url("../img/carousel-1.png") center center / cover no-repeat;
  background-position: center 0%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(2 45 80 / 75%);
  z-index: 1;
}

.banner h1 {
  font-size: 3.8em;
}

.banner .text-center {
  position: relative;
  z-index: 2;  
  color: #fff;
}

.sec-para {
  font-size: 26px;
}

/* ========== Navbar Dropdown Styling ========== */

/* Logo Styling */

/* Desktop Dropdown Menu */
.navbar-nav .dropdown-menu {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 0;
  min-width: 250px;
  margin-top: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .dropdown-item {
  padding: 0.85rem 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
}

.navbar-nav .dropdown-item i {
  color: #1e3c72;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding-left: 2rem;
  border-left-color: #2a5298;
}

.navbar-nav .dropdown-item:hover i {
  color: #fff;
  transform: scale(1.1);
}

.navbar-nav .dropdown-item:active {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

/* Dropdown Toggle Arrow */
.navbar-nav .dropdown-toggle::after {
  margin-left: 0.5rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Nav Links Styling */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #2a5298;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-nav .nav-link.active {
  color: #2a5298;
  font-weight: 600;
}

/* Mobile Responsive Styling */
@media (max-width: 991px) {
  /* Navbar Collapse */
  .navbar-collapse {
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Nav Items */
  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 5px;
    margin-bottom: 0.25rem;
  }

  .navbar-nav .nav-link:hover {
    background: #f8f9fa;
    padding-left: 1.75rem !important;
  }

  .navbar-nav .nav-link::before {
    display: none;
  }

  /* Mobile Dropdown Menu */
  .navbar-nav .dropdown-menu {
    background: #f8f9fa;
    border: none;
    box-shadow: none !important;
    padding: 0.5rem 0 0.5rem 1rem;
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 0;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .navbar-nav .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    border-radius: 5px;
    margin-bottom: 0.25rem;
  }

  .navbar-nav .dropdown-item:hover {
    background: #e9ecef;
    color: #1e3c72;
    border-left-color: #2a5298;
    padding-left: 1.5rem;
  }

  .navbar-nav .dropdown-item i {
    color: #2a5298;
  }

  .navbar-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav .dropdown-toggle::after {
    margin-left: auto;
  }

  /* Navbar Toggler */
  .navbar-toggler {
    border: 2px solid #1e3c72;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover {
    background: #1e3c72;
  }

  .navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 60, 114, 0.25);
  }
}

/* Tablet View */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem !important;
  }
}

/* Active State for Dropdown Items */
.dropdown-item.active,
.dropdown-item:active {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
}

/* Smooth Transitions */
* {
  -webkit-tap-highlight-color: transparent;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
  user-select: none;
}

/* Hover effect for navbar */
.navbar {
  transition: all 0.3s ease;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Service Detail Cards */
.service-detail-card {
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Tech Service Boxes */
.tech-service-box {
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.tech-service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: white;
}

/* Icon Animation */
.service-detail-card i,
.tech-service-box i {
  transition: transform 0.3s ease;
}

.service-detail-card:hover i,
.tech-service-box:hover i {
  transform: scale(1.1);
}

/* Responsive Images */
@media (max-width: 991px) {
  .flex-lg-row-reverse {
    flex-direction: column-reverse !important;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* List Styling */
.list-unstyled li {
  transition: all 0.2s ease;
}

.list-unstyled li:hover {
  padding-left: 10px;
}

/* our value sec start */

.our-value {
  background: linear-gradient(135deg, #023b68 0%, #034a7f 100%);
}

.section-title {
  text-align: center;
  color: white;
  font-size: 3em;
  margin-bottom: 80px;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4a9eff, transparent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  /* background: linear-gradient(45deg, #4a9eff, #023b68, #4a9eff); */
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.value-title {
  color: #4a9eff;
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.value-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05em;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: #4a9eff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 2em;
    margin-bottom: 50px;
  }

  .value-card {
    padding: 30px;
  }

  .value-number {
    font-size: 3.5em;
  }
}

.connecting-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(74, 158, 255, 0.3),
    transparent
  );
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}

/* our value sec end */

/* About Us Start */

/* Container */

/* Mission Vision Section - Light Gray BG */
.mission-vision-section {
  padding: 100px 20px;
  background: #f5f5f5;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5em;
  color: #023b68;
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mv-item {
  background: white;
  padding: 50px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #023b68;
}

.mv-item h3 {
  color: #023b68;
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mv-icon {
  width: 40px;
  height: 40px;
  background: #023b68;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.mv-item p {
  color: #555;
  font-size: 1.15em;
  line-height: 1.9;
}

/* Founder Section - White with accent */
.founder-section {
  padding: 100px 20px;
  background: white;
}

.founder-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.founder-header h2 {
  font-size: 2.8em;
  color: #023b68;
  font-weight: 600;
  margin-bottom: 25px;
}

.founder-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2em;
  color: #444;
  line-height: 1.9;
  text-align: center;
}

.expertise-timeline {
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #023b68, #4a9eff);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: 25px;
  top: 0;
  width: 32px;
  height: 32px;
  background: white;
  border: 4px solid #023b68;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  background: #fafafa;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #023b68;
}

.timeline-content h4 {
  color: #023b68;
  font-size: 1.7em;
  margin-bottom: 20px;
  font-weight: 600;
}

.timeline-content p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-content ul {
  list-style: none;
  padding-left: 0;
}

.timeline-content li {
  color: #555;
  font-size: 1.05em;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
}

.timeline-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #023b68;
  font-weight: bold;
  font-size: 1.2em;
}

.timeline-content strong {
  color: #023b68;
  font-weight: 600;
}

/* Credentials Box */
.credentials-box {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 50px;
  background: linear-gradient(135deg, #023b68 0%, #034a7f 100%);
  
  text-align: center;
  box-shadow: 0 10px 40px rgba(2, 59, 104, 0.2);
}

.credentials-box h3 {
  color: #4a9eff;
  font-size: 1.8em;
  margin-bottom: 25px;
  font-weight: 600;
}

.credentials-box p {
  color: white;
  font-size: 1.15em;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.8em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .mv-item {
    padding: 35px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-dot {
    left: 5px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-content {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: 2.2em;
  }

  .mission-vision-section,
  .founder-section {
    padding: 60px 20px;
  }

  .mv-item h3 {
    font-size: 1.5em;
  }

  .founder-header h2 {
    font-size: 2em;
  }

  .timeline-content h4 {
    font-size: 1.4em;
  }

  .credentials-box {
    padding: 35px 25px;
  }
}

.mission-vision-section {
  padding: 80px 20px;
  background: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  padding: 50px;
  background: linear-gradient(135deg, #f8f9fc 0%, #e8eef5 100%);
  border-radius: 15px;
  border-left: 5px solid #023b68;
  position: relative;
}

.mv-card h3 {
  color: #023b68;
  font-size: 2em;
  margin-bottom: 25px;
  font-weight: 600;
}

.mv-card p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.8;
}

/* About Us End */

/* Sector Cards */
.sector-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.sector-card:hover {
  transform: translateY(-10px);
  border-color: #1e3c72;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.sector-icon {
  transition: all 0.4s ease;
}

.sector-card:hover .sector-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

/* Approach Cards */
.approach-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
  border-color: #2a5298;
}

.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 60, 114, 0.03) 0%,
    rgba(42, 82, 152, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-card h3{
    font-size: 1.5rem;
}

.approach-icon {
  transition: all 0.4s ease;
}

.approach-card:hover .approach-icon {
  transform: scale(1.15);
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.approach-number {
  font-family: "Arial Black", sans-serif;
  transition: all 0.4s ease;
}

.approach-card:hover .approach-number {
  transform: scale(1.2);
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

/* Value Banner */
.value-banner {
  position: relative;
  overflow: hidden;
}

.value-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.value-item {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  transition: all 0.3s ease;
}

.value-item:hover i {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .approach-card {
    margin-bottom: 2rem;
  }

  .sector-card {
    margin-bottom: 1.5rem;
  }
}

/* List Hover Effect */
.list-unstyled li {
  transition: all 0.2s ease;
}

.list-unstyled li:hover {
  padding-left: 10px;
  color: #1e3c72;
}

/* Main Content Section */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Side */

/* Hero Section */
.hero-section {
  background: white;
  padding: 100px 20px 80px;
  text-align: center;
  border-bottom: 3px solid #023b68;
}

.hero-title {
  font-size: 3.5em;
  color: #023b68;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2em;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  background: white;
  padding: 45px;
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-info h3 {
  color: #023b68;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info h3::before {
  content: "";
  width: 4px;
  height: 25px;
  background: #023b68;
  border-radius: 2px;
}

.info-block {
  margin-bottom: 40px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block p {
  color: #666;
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-block a {
  color: #023b68;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.info-block a:hover {
  color: #4a9eff;
}

.response-note {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #023b68;
  margin-top: 15px;
}

.response-note p {
  color: #023b68;
  font-size: 0.95em;
  margin: 0;
}

/* Form Side */
.contact-form-container {
  background: white;
  padding: 50px;
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 35px;
}

.form-header h2 {
  color: #023b68;
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-header p {
  color: #666;
  font-size: 1.05em;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  color: #333;
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #e0e0e0;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fafafa;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #023b68;
  background: white;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  background: #023b68;
  color: white;
  padding: 16px 50px;
  border: none;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #034a7f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 59, 104, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5em;
  }

  .contact-form-container {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 70px 20px 50px;
  }

  .hero-title {
    font-size: 2em;
  }

  .hero-subtitle {
    font-size: 1.05em;
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-info,
  .contact-form-container {
    padding: 30px 25px;
  }

  .form-header h2 {
    font-size: 1.6em;
  }
}


/* Desktop Styling */

.img1 {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .container-fluid.py-6 {
    padding: 40px 0 !important;
  }

  .py-6 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .img1 {
    max-width: 400px;
    margin-bottom: 20px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container-fluid.py-6 {
    padding: 30px 15px !important;
  }

  .py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .display-5 {
    font-size: 1.8rem !important;
  }

  .sec-para {
    font-size: 1rem !important;
  }

  .img1 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 20px auto;
  }

  /* Image sections ko mobile par pehle dikhayen */
  .row.g-0 {
    display: flex;
    flex-direction: column;
  }

  /* Image columns ko pehle show karein mobile par */
  .col-lg-5 {
    order: 1;
  }

  .col-lg-7 {
    order: 2;
  }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
  .container-fluid.py-6 {
    padding: 20px 10px !important;
  }

  .py-6 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .px-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .display-5 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .sec-para {
    font-size: 0.95rem !important;
  }
}

/*About Start*/

/* About Section */
.about-section {
  background: #f5f5f5;
  padding: 45px 20px;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-left .about-text{
    font-size : 15px;
}

.about-title {
  font-size: 2.5em;
  color: #023b68;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1em;
  line-height: 1.9;
  color: #333;
}

.about-text strong {
  font-weight: 600;
  color: #000;
}

/* Cards Container */
.cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.card-content {
    position: absolute;
    z-index: 2;
    text-align: left;
    padding: 0 30px;
    color: white;
    bottom: 0;          /* content ko bottom par le aayega */
    left: 0;
    width: 100%;
}

.card-content h3 {
    color: #fff;
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: 300;
}

.card-content p {
  font-size: 1.1em;
  line-height: 1.7;
}


/* Responsive */
@media (max-width: 1200px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }

  .about-title {
    font-size: 2.2em;
  }

  .about-text {
    font-size: 1.05em;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-card {
    height: 280px;
  }

  .card-content h3 {
    font-size: 1.8em;
  }

  .card-content p {
    font-size: 1em;
  }

  .stats-section {
    padding: 50px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-number {
    font-size: 2em;
  }
      .stats-section {
        padding: 50px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .stat-item {
        padding: 20px;
    }
  
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .about-text {
    font-size: 1em;
  }

  .info-card {
    height: 250px;
  }

  .card-content {
    padding: 30px 25px;
  }

  .card-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .card-content p {
    font-size: 0.95em;
  }
}

/*About End*/

/*header contact btn start*/

.contact-btn {
    background: #023b68 !important;
    color: white !important;
    padding: 10px 50px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.contact-btn:hover {
    background: #034a7f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 59, 104, 0.3);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
        text-align: center;
        width: auto;
    }
}

@media (max-width: 768px) {
    .contact-btn {
        width: 100%;
        padding: 12px 20px !important;
        margin-top: 15px;
    }
}

/*header contact btn end*/

/*slider start*/

 .section-title {
            color: white;
            font-size: 3em;
            font-weight: 400;
            text-align: center;
            margin-bottom: 80px;
            line-height: 1.4;
        }

        .slider-wrapper {
            position: relative;
            padding: 0 80px;
        }

        .slider-container {
            overflow: hidden;
            width: 100%;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .sector-slide {
            min-width: calc(25% - 22.5px);
            flex-shrink: 0;
            position: relative;
            cursor: pointer;
        }

        .sector-content {
            position: relative;
            height: 400px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .sector-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .sector-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sector-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .sector-content:hover .sector-overlay {
            background: linear-gradient(to bottom, rgba(139,0,0,0.7), rgba(139,0,0,0.9));
        }

        .sector-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .sector-content:hover .sector-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .sector-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .sector-name {
            color: white;
            font-size: 1.5em;
            font-weight: 500;
            text-align: center;
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .nav-arrow.prev {
            left: 10px;
        }

        .nav-arrow.next {
            right: 10px;
        }

        .nav-arrow svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Dots Navigation */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .sector-slide {
                min-width: calc(33.333% - 20px);
            }
        }

        @media (max-width: 968px) {
            .section-title {
                font-size: 2.2em;
                margin-bottom: 50px;
            }

            .slider-wrapper {
                padding: 0 60px;
            }

            .sector-slide {
                min-width: calc(50% - 15px);
            }

            .sector-content {
                height: 350px;
            }
        }

        @media (max-width: 600px) {
            .sectors-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 1.8em;
                margin-bottom: 40px;
            }

            .slider-wrapper {
                padding: 0 50px;
            }

            .sector-slide {
                min-width: 100%;
            }

            .slider-track {
                gap: 20px;
            }

            .sector-content {
                height: 300px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }

            .nav-arrow svg {
                width: 20px;
                height: 20px;
            }
        }
  
/*slider end*/

/*How We Work Start*/


/*How We Work End*/

/*Our Services Sttart*/

        /* Services Container */
        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Service Section */
        .service-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .service-section:last-child {
            border-bottom: none;
        }

        /* Alternating layout */
        .service-section:nth-child(even) .service-content {
            order: 2;
        }

        .service-section:nth-child(even) .service-image {
            order: 1;
        }

        /* Service Content */
        .service-content {
            padding: 15px;
        }

        .service-number {
            display: inline-block;
            background: #02803c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .service-title {
            color: #023b68;
            font-size: 2.1em;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .service-intro {
            color: #555;
            font-size: 1.11em;
            line-height: 1.8;
            margin-bottom: 20px;
            padding-left: 20px;
            border-left: 4px solid #02803c;
        }

        .service-highlights {
            background: #f8f9fc;
            padding: 15px;
            border-radius: 8px;
        }

        .service-highlights h4 {
            color: #023b68;
            font-size: 1.2em;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .highlight-item {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }

        .highlight-item:last-child {
            margin-bottom: 0;
        }

        .highlight-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #02803c;
            font-weight: bold;
            font-size: 1.2em;
        }

        .highlight-item strong {
            color: #023b68;
            font-weight: 600;
        }

        .highlight-item p {
            color: #666;
            line-height: 1.7;
            margin: 5px 0 0 0;
        }

        /* Service Image */
        .service-image {
            position: relative;
            height: 500px;
            
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(2, 59, 104, 0.3));
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .service-section {
                gap: 40px;
                padding: 60px 0;
            }

            .service-image {
                height: 400px;
            }

            .service-title {
                font-size: 1.8em;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 70px 20px 50px;
            }

            .hero-title {
                font-size: 2.5em;
            }

            .hero-subtitle {
                font-size: 1.1em;
            }

            .service-section {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 0;
            }

            .service-section:nth-child(even) .service-content,
            .service-section:nth-child(even) .service-image {
                order: 0;
            }

            .service-image {
                height: 350px;
            }

            .service-content {
                padding: 0;
            }

            .service-title {
                font-size: 1.6em;
            }

            .service-intro {
                font-size: 1.05em;
            }

            .service-highlights {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2em;
            }

            .service-section {
                padding: 40px 0;
            }

            .service-number {
                width: 40px;
                height: 40px;
                line-height: 40px;
                font-size: 1.2em;
            }

            .service-title {
                font-size: 1.4em;
                margin-bottom: 15px;
            }

            .service-intro {
                font-size: 1em;
                margin-bottom: 25px;
            }

            .service-image {
                height: 280px;
            }

            .highlight-item {
                padding-left: 25px;
                margin-bottom: 15px;
            }
        }

/*Our Services End*/

/*We offer Section start*/

.principle-item p{
    margin-bottom: 20px !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .col-lg-5, .col-lg-7 {
        padding: 3rem 2rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .senior-led-box {
        padding: 1.5rem !important;
    }
    
    .senior-led-box p {
        font-size: 1rem !important;
    }
    
    .principle-item {
        padding: 1rem !important;
    }
}

@media (max-width: 576px) {
    .col-lg-5, .col-lg-7 {
        padding: 2rem 1.5rem !important;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .senior-led-box {
        padding: 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .principle-item h5 {
        font-size: 1.1rem !important;
    }
    
    .principle-item p {
        font-size: 0.95rem !important;
    }
}

/*We offer Section end*/

/*Our Team Start*/

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-card:hover .social-icon {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .social-icon:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:hover .social-icon:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:hover .social-icon:nth-child(3) {
    transition-delay: 0.3s;
}

.social-icon:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(0) scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.team-position {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Value Boxes */
.value-box {
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-box:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-box h5 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-img {
        height: 325px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
}

/*Our Team End*/

/*Our Insight Start*/

 .insights-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8em;
            color: #023b68;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.2em;
            color: #666;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .article-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(2, 59, 104, 0.2);
        }

        .article-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-image img {
            transform: scale(1.1);
        }

        .article-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(2, 59, 104, 0.9);
            color: white;
            padding: 12px 16px;
            border-radius: 6px;
            text-align: center;
        }

        .article-date .day {
            font-size: 2em;
            font-weight: bold;
            line-height: 1;
        }

        .article-date .month {
            font-size: 0.9em;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .article-content {
            padding: 30px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .article-date-text {
            color: #999;
            font-size: 0.9em;
        }

        .article-category {
            background: #023b68;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85em;
            font-weight: 600;
        }

        .article-title {
            color: #097b3a;
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .article-card:hover .article-title {
            color: #023b68;
        }

        .article-excerpt {
            color: #666;
            font-size: 1em;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #023b68;
            font-weight: 600;
            text-decoration: none;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: #097b3a;
            gap: 12px;
        }

        .read-more-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .insights-section {
                padding: 50px 20px;
            }

            .section-header h2 {
                font-size: 2.2em;
            }

            .articles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .article-image {
                height: 220px;
            }

            .article-content {
                padding: 25px;
            }

            .article-title {
                font-size: 1.3em;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.8em;
            }

            .article-image {
                height: 200px;
            }

            .article-content {
                padding: 20px;
            }

            .article-title {
                font-size: 1.2em;
            }
        }

.blog-detail {
    line-height: 1.8;
}

.section-heading {
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 3px solid #02803c;
    display: inline-block;
}

.challenge-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.challenge-item:hover {
    border-left-color: #02803c;
    transform: translateX(5px);
    background: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 8px 0;
    transition: all 0.2s ease;
}

.custom-list li:hover {
    padding-left: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #152440 !important;
    color: white !important;
}

.accordion-button:not(.collapsed) i {
    color: #02803c !important;
}

.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sidebar-widget {
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.related-post h6:hover {
    color: #02803c !important;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar-widget {
        margin-bottom: 2rem;
    }
}

/*Our Insight End*/

/*Terms Conditions Start*/

 /* Section Styling */
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        .terms-section h2 {
            color: #023b68;
            font-size: 1.8em;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

        .terms-section p {
            color: #555;
            font-size: 1.05em;
            margin-bottom: 10px;
            text-align: justify;
        }

        .terms-section ul {
            margin: 20px 0;
            padding-left: 40px;
        }

        .terms-section li {
            color: #555;
            font-size: 1.05em;
            margin-bottom: 12px;
        }

        /* Contact Box */
        .contact-box {
            background: #f2f2f2;
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid #023b68;
            margin-top: 40px;
        }

        .contact-box h3 {
            color: #023b68;
            font-size: 1.4em;
            margin-bottom: 15px;
        }

        .contact-box p {
            color: #555;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: #023b68;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-box a:hover {
            color: #8b0000;
        }

        /* Separator Line */
        .separator {
            border: none;
            border-top: 1px solid #e0e0e0;
            margin: 30px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-section {
                padding: 40px 20px;
            }

            .header-section h1 {
                font-size: 2.2em;
            }

            .content-container {
                padding: 40px 20px;
            }

            .terms-section h2 {
                font-size: 1.5em;
            }

            .terms-section p,
            .terms-section li {
                font-size: 1em;
            }

            .terms-section ul {
                padding-left: 25px;
            }
        }

        @media (max-width: 480px) {
            .header-section h1 {
                font-size: 1.8em;
            }

            .terms-section h2 {
                font-size: 1.3em;
            }

            .contact-box {
                padding: 20px;
            }
        }

/*Terms Conditions End*/

/* Mobile View Start */

@media (max-width: 576px) {
    .footer .row .g-5{
        padding:0px;
    }
    .team-info{
        padding: 5px;
    }
    .logo img{
        margin-bottom: 0px;
    }
    .navbar{
        height: 100%;
    }
    .logo img {
        width: 146px;
    }
    .banner {
        height: 70vh;
    }
    .banner h1{
        font-size: 2.5em;
    }
    .lead{
        font-size: 1rem;
    }
  .sec-para {
    font-size: 18px;
  }
  .service-item {
    height: unset;
    padding: 10px ;
  }
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

/* Mobile View End */
