
body{
    background-color: rgb(237, 237, 240);
}

/* Full-Screen Slider Styles */
.fullscreen-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0077AF;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .fullscreen-slider {
        height: 70vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .fullscreen-slider {
        height: 60vh;
    }
    
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
} 
.mainTitle{
    color: #0077AF;
    font-weight: bold;
}
.menuAs{
    background-color: #0077AF;
    color:white;
}

/* //service  */
.service-card {
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}


/* Added styles for menu */
.navbar-nav {
    justify-content:flex-start;
    width: 100%;
    margin-left: 70px !important;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        width: 100%;
        text-align: center; /* Center align text */
        margin-left: 0 !important; /* Remove left margin */
    }
}

.nav-link {
    color: #0077AF !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 6px 15px;
    margin: 0 5px;
    text-align: center;
}

.social-icons a {
    color: #0077AF;
    margin: 0 10px;
    font-size: 25px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color:#124a47;
}

.nav-link.active{
    background-color: #0077AF;
    color: white !important;
    border: 2px solid #0077AF;
    border-radius: 5px;
}
.nav-link:hover {
    background-color: #0077AF;
    color: white !important;
    border: 2px solid #0077AF;
    border-radius: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
   
}




.btn-primary:hover {
    background-color: #0077AF;
    border-color: white;
    transform: translateY(-2px);
}


/* // */
.solution_card,.product_card {
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
                0 5px 15px 0 rgba(37, 44, 97, 0.15);
    border-radius: 15px;
    margin: 8px;
    padding: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 265px;
    transition: 0.7s;
    flex: 1; /* Allow cards to stretch */
    display: flex;
    flex-direction: column; /* Stack content vertically */
  }

  .product_detail_card{
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
                0 5px 15px 0 rgba(37, 44, 97, 0.15);
    border-radius: 15px;
    margin: 8px;
    padding: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 265px;
    transition: 0.7s;
    flex: 1; /* Allow cards to stretch */
    display: flex;
  }

  .solution_card:hover {
    background: #309df0;
    color: #fff;
    transform: scale(1.1);
    z-index: 9;
  }

  .product_card:hover{
    transform: scale(1.1);
    z-index: 9;
  }

  .product_card img{
    border-radius: 10px;
    height: 40vh;
    object-fit:cover;
  }

  .our_solution_category a{
    text-decoration: none;
  }
  
  .product-search {
    display: flex;
    justify-content: end;
    margin-bottom:10px;
  }

  .product-search input{
    width: 400px;
    padding:7px 15px;
    margin: 8px;
    border-radius:20px;
    border:2.5px solid lightgray;
    outline: none;
    box-sizing: border-box;
  }

  .product-search input:focus {
    border: 2.5px solid #0077AF;
  }

  .solution_card:hover::before {
    background: rgb(85 108 214 / 10%);
  }

  .solution_card:hover .solu_title h3,
  .solution_card:hover .solu_description p {
    color: #fff;
  }

  .solution_card::before {
    content: "";
    position: absolute;
    background: rgb(85 108 214 / 5%);
    width: 170px;
    height: 400px;
    z-index: -1;
    transform: rotate(42deg);
    right: -56px;
    top: -23px;
    border-radius: 35px;
  }

  .solution_card:hover .solu_description button {
    background: #fff !important;
    color: #309df0;
  }

  .solu_title h3 {
    color: #212121;
    font-size: 1.3rem;
    margin-top: 13px;
    margin-bottom: 13px;
  }

  .solu_description {
    flex: 1; /* Allow description to take remaining space */
  }

  .solu_description p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .solu_description button {
    border: 0;
    border-radius: 15px;
    background: linear-gradient(
      140deg,
      #42c3ca 0%,
      #42c3ca 50%,
      #42c3cac7 75%
    ) !important;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 16px;
  }

  .hover_color_bubble {
    position: absolute;
    background: rgb(54 81 207 / 15%);
    width: 100rem;
    height: 100rem;
    left: 0;
    right: 0;
    z-index: -1;
    top: 16rem;
    border-radius: 50%;
    transform: rotate(-36deg);
    left: -18rem;
    transition: 0.7s;
  }

  .solution_card:hover .hover_color_bubble {
    top: 0rem;
  }

  .so_top_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .so_top_icon img {
    width: 40px;
    height: 50px;
    object-fit: contain;
  }

  /* Ensure equal height for cards */
  .our_solution_category .row {
    display: flex;
    flex-wrap: wrap;
  }

  .our_solution_category .row .col-md-4 {
    display: flex;
  }

  



/* footer */
.social-icon-footer a:hover{
    color:#124a47;
   
 }
 .social-icon-footer a {
     color: #0077AF;
     margin: 0 10px;
     font-size: 30px;
     transition: color 0.3s;
 }
 
 .so_top_iconr {
     display: flex;
     justify-content: center;
     align-items: center; 
     font-size: 10px;
   }
 
   .solu_description li{
     list-style-type:circle;
     font-weight: bold;
     text-align: left;
   }
   .top-shadow {
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
  }

.footerMenu:hover{
  color:#124a47;
}

.loginBtn {
  text-decoration: none;
  color:#0077AF;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.loginBtn:hover {
  background-color:#0077AF;
  color: #fff;
}

.toggle-btn {
  text-decoration: none;
  color:#0077AF;
  padding: 4px 15px;
}

.toggle-btn:hover {
  background-color: #f0f4f8;
  
  border-radius: 5px;
}

.no-dropdown-icon::after {
  display: none;
}

@media (max-width: 767.98px) {
  .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      padding: 1rem;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
}

.aboutList{
  list-style: none;
  padding-left: 0;
}
li.aboutList::before {
  content: "✓"; /* Right arrow icon */
  color:#0077AF; /* Icon color */
  font-weight: bold; /* Make the icon bold */
  margin-right: 10px; /* Space between icon and text */
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  max-height: 95vh;
  background:  url('./assets/hb.png') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  z-index: -1; /* Keeps it behind other content */
}


.hero-title {
  font-size: 2.2rem;
  font-weight:bold;
}

.hero-title .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-text ul li {
  font-size: 1.1rem;
  padding-left: 10px;
}

/* Button Styles */
.btn-lg {
  padding: 8px 20px;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-light {
  background: #ffffff;
  color: #0077AF;
}

.btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-section {
      text-align: center;
  }

  .hero-title {
      font-size: 2rem;
  }

  .info-text {
      font-size: 1rem;
  }

  .info-text ul {
      display: inline-block;
      text-align: left;
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
  }

  .btn-lg {
      padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
      flex-direction: row;

  }

  .btn-lg {
      width: 100%;
  }

  .hero-title {
      font-size: 1.75rem;
  }
}

/* FEADBACK  */
:root {
  --accent-color: #0077AF;
  --accent-hover: #124a47;
  --accent-light: rgba(23, 93, 89, 0.1);
}

.feedback-section {
  background-color: var(--accent-light);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.text-accent {
  color: var(--accent-color) !important;
}

.title-border {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.title-border span {
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.feedback-form-wrapper {
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feedback-form-wrapper:hover {
  transform: translateY(-5px);
}

.form-floating > .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(23, 93, 89, 0.25);
}

.star-rating i {
  color: #ffc107;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-rating i:hover {
  transform: scale(1.2);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
}

.stat-item {
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(23, 93, 89, 0.1);
  min-width: 100px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .feedback-content {
      margin-top: 2rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
}

/* Custom Form Styles */
.form-control {
  border: 1px solid rgba(23, 93, 89, 0.2);
}

.form-control:focus {
  border-color: var(--accent-color);
}

.form-floating label {
  color: #6c757d;
}

.form-floating > .form-control:focus ~ label {
  color: var(--accent-color);
}

/* Icon Grid Styles */
.feedback-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}
.feedbackText{
  color:#0077AF !important; 
}
.icon-box {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(23, 93, 89, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(23, 93, 89, 0.2);
}

.icon-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.icon-box span {
  display: block;
  color: #555;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .feedback-icons-grid {
      max-width: 400px;
  }
}

@media (max-width: 576px) {
  .feedback-icons-grid {
      grid-template-columns: 1fr;
      max-width: 280px;
  }
}


/* //loader */

/* Loader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0077AF; /* Background color of the preloader */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's on top of everything */
}

.preloader-circle {
  width: 80px; /* Size of the circle */
  height: 80px; /* Size of the circle */
  border: 8px solid #f3f3f3; /* Light gray border */
  border-top: 8px solid #124a47; /* Blue border for animation */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Spin animation */
}

/* Spin Animation */
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .preloader-circle {
      width: 60px; /* Smaller circle for mobile */
      height: 60px; /* Smaller circle for mobile */
      border-width: 6px; /* Thinner border for mobile */
  }
  
}

/* login form  */
.login-section {
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 80px 0; /* Adds space at top and bottom */
  display: flex;
  align-items: center;
}

.login-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  margin-top: -60px; /* Adjusts card position */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .login-section {
      padding: 20px 0; /* Less padding on mobile */
  }

  .login-card {
      margin: 10px;
      margin-top: 0; /* Reset margin for mobile */
  }
}

/* If you have a fixed navbar, add this */


.login-section {
  min-height: calc(100vh - var(--navbar-height));
  margin-top: var(--navbar-height);
}