/********** Template CSS **********/
:root {
    --primary: #ffa313;
    --secondary: #ffa313;
    --light: #EEF9FF;
    --dark: #000;
}
body {
    font-family: 'Montserrat', sans-serif  !important;
}
.bgo{
    background: rgb(250, 229, 189);
}
.bgp{
    background: rgb(218, 218, 218);
}
.bgc{
     background: #ffa313;;
}
.bga{
    background:  #091E3E;
}
.bo{
    color: #ffa313;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 20px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* --- Modern Navbar Styling --- */
/* Navbar */
/* Navbar */
.custom-navbar {
  position: fixed; /* stays on top */
  top: 0;          /* lock to very top */
  left: 0;         /* start from left edge */
  width: 100%;     /* full width */
  
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, menu right */

  background: #ffffff;

 /* light transparent */
  padding: 0px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);

  z-index: 9999;
  transition: background 0.3s;
  text-align: left; /* no forced center */
}


/* Logo */
.custom-navbar-logo {
  height: 40px;
}

/* Menu */
.custom-navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.custom-nav-item {
  position: relative;
}

.custom-nav-link {
  color: #000000;
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  transition: color 0.3s;
}

.custom-nav-link:hover {
  color: #ff9900
}
ul{
  margin: 10px !important;
}

/* Dropdown Menu */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(34,34,34,0.95);
  border-radius: 5px;
  min-width: 180px;
  display: none; /* hidden by default */
  list-style: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.custom-dropdown-item {
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.custom-dropdown-item:hover {
  background: #333;
}

/* Show dropdown on hover */
.custom-dropdown:hover .custom-dropdown-menu {
  display: block;
}

/* Buttons */
.custom-btn {
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  background: #ffa313;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-btn:hover {
  background: #009acd;
}

/* Make all navbar text smaller */
.custom-navbar, 
.custom-navbar a, 
 
.custom-navbar .custom-dropdown-item, 
.custom-navbar .custom-btn {
    font-weight: 500;
    font-size: 15px; /* adjust the size as needed */
}

/* Optional: adjust spacing for smaller text */
.custom-navbar-menu li {
    padding: 5px 10px; /* reduces vertical spacing */
}

.custom-navbar-logo h3 {
    /* slightly larger for logo */
}

/* navbar  end */


/* top photo tart */

.hero-image {
  position: relative;
  width: 100%;
  height: 750px; /* or whatever height you want */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* make sure image covers the hero area */
}

.hero-text {
  position: absolute;
  top: 50%; /* vertically center */
  left: 10%; /* space from the left */
  transform: translateY(-50%); /* vertical centering */
  color: white;
  max-width: 600px; /* text box width */
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f4f6fb;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-text .btn {
  background: #fff;
  color:  #ffa313;/* adjust color */
   /* adjust color */
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text .tabs {
  display: flex;
  gap: 20px;
}

.hero-text .tabs span {
  color: white;
  cursor: pointer;
  padding-bottom: 5px;
}

.hero-text .tabs .active {
  border-bottom: 2px solid white;
}

/*second page*/

/* Tablets */
@media (max-width: 992px) {
  .hero-image {
    height: 400px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text {
    left: 8%;
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 90%;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-text .tabs {
    gap: 10px;
    font-size: 0.85rem;
  }
}

/* top photo end */

/* about page start */
.heros-image {
  position: relative;
  width: 100%;
  height: 650px; /* or whatever height you want */
  overflow: hidden;
}

.heros-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* make sure image covers the hero area */
}

.heros-text {
  position: absolute;
  top: 50%; /* vertically center */
  left: 10%; /* space from the left */
  transform: translateY(-50%); /* vertical centering */
  color: white;
  max-width: 600px; /* text box width */
}

.heros-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f4f6fb;
}

.heros-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
}

.heros-text .btn {
  background: #fff;
  color: #5e2bff; /* adjust color */
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.heros-text .tabs {
  display: flex;
  gap: 20px;
}

.heros-text .tabs span {
  color: white;
  cursor: pointer;
  padding-bottom: 5px;
}

.heros-text .tabs .active {
  border-bottom: 2px solid white;
}

/*second page*/

/* Tablets */
@media (max-width: 992px) {
  .heros-image {
    height: 400px;
  }

  .heros-text h1 {
    font-size: 2.5rem;
  }

  .heros-text p {
    font-size: 1rem;
  }

  .heros-text {
    left: 8%;
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .heros-image {
    height: 300px;
  }

  .heros-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 90%;
    text-align: left;
  }

  .heros-text h1 {
    font-size: 1.8rem;
  }

  .heros-text p {
    font-size: 0.9rem;
  }

  .heros-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .heros-text .tabs {
    gap: 10px;
    font-size: 0.85rem;
  }
}

/* about page end */


/* software second part start  */
.saitop {
  text-align: center;
  justify-content: center;
  justify-self: center;
  padding: 40px;
}
.customai-wrapper {
  background-color: #f9f9ef;
  max-width: 1200px;
  margin: auto;
  border: 1px solid #ffa313;
  border-radius: 6px;
  display: flex;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.customai-sidebar {
  width: 400px;
  padding-right: 20px;
  border-right: 1px solid #e6e6e6;
}

.customai-sidebar-title {
  font-size: 23px;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.customai-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: transparent;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
  color: #000;
  text-align: left;
  width: 100%;
}

.customai-menu-item:hover,
.customai-menu-item.active {
  background-color: #f7ecc9;
  color: #091E3E;;
}

.customai-menu-item i {
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.customai-content {
  flex: 1;
  padding-left: 30px;
}

.customai-content-image {
  position: relative;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.customai-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customai-content-text h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.customai-content-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.customai-learn-more {
  color: #091E3E;;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}
/* ✅ Responsive Design */
@media (max-width: 768px) {
  .customai-wrapper {
    flex-direction: column;
    padding: 15px;
  }

  .customai-sidebar {
    width: 100%;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    overflow-x: auto;
  }

  .customai-menu-item {
    display: inline-flex;
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px 12px;
  }

  .customai-content {
    padding: 0;
  }

  .customai-content-image {
    height: 200px;
  }

  .customai-content-text h2 {
    font-size: 18px;
  }

  .customai-content-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .customai-content-image {
    height: 160px;
  }

  .customai-menu-item {
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* software second part end */

/* customer :start */
.scustomer {
  background-color: #daf2f7;
}
.customai-section {
  text-align: center;
  padding: 50px 20px;
}

.customai-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}


/* about us start */

.section {
  max-width: 100%;
  margin: auto;
  padding: 60px 40px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 40px;
}

.section-text {
  flex: 1;
}

.section-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.section-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.section-text a {
  color: #ff9900;
  text-decoration: none;
  font-weight: 600;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.section-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* Play button overlay */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #a86ef7;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.play-btn:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .sectiono {
    flex-direction: column;
    text-align: center;
  }
  .section-image img {
    max-width: 100%;
  }
}


/* about us end */

/* hitory tart */
 header {
      background-color: #004080;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    header h1 {
      color: #daf2f7;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    header p {
      color: #ffffff;
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .history-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .history-section h2 {
      font-size: 2rem;
      color: #000000;
      margin-bottom: 20px;
      text-align: center;
    }

    .history-content {
      color: #000;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
    }

    .history-text, .history-image {
      flex: 1 1 400px;
    }

    .history-text p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .history-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    footer {
      background-color: #004080;
      color: #fff;
      padding: 20px;
      text-align: center;
      margin-top: 50px;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .history-content {
        flex-direction: column;
        gap: 20px;
      }
    }
/* hitory end */
