/*body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}*/
/*this one below controls the body color and font size for each page, but the index.html page company name change it on it's section*/
body {
  font-family: "Poppins", sans-serif;
  color: #fffefe;
  background-color: #080808; /*#110202;*/
  margin-left: 0px;    /* Reduced from default */
  margin-right: 0px;   /* Reduced from default */
}

/* Container class for content width control */
.container {
  width: 100%;
  max-width: 1500px !important; /* Increased from 1170px for modern screens */
  margin: 0 auto;
  padding: 0 15px; /* Added consistent padding */
}

/* New height styles after body */
.main-container {
    min-height: 200vh;
}

.section {
    min-height: 150vh;
}

.hero-section {
    min-height: 150vh;
}

.content-section {
    min-height: 1200px;
}

@media screen and (max-width: 768px) {
    .content-section {
        min-height: 900px;
    }
}
/* below is for info section, at the bottom of the page*/
.layout_padding {
  padding-top: 25px;
  padding-bottom: 25px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-right: 10px;
}

.heading_container img {
  width: 30px;
}

/*header section*/
.hero_area {
  min-height: 100vh;
  height: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
          /*background-color:#f2f3f4 light grey*/
          background-color: #000000;
 /*background-color: #eae6f5; original*/
/*the color for whole page*/
 margin: 0;
  padding: 0;
}

.sub_page .hero_area {
  height: auto;
}

/*head section spacing*/
.header_section .container {
 max-with: 100%;
  padding: 0;
}

.header_section .nav_container {
  margin: 0 auto;
 padding: 5px 0;
}

/* Improve image scaling */
.img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 8px 15px; /* Slightly increased from 7px 20px */
  margin: 10px 15px;
  /*color: #000000;*/
  color: #ffd700;
  text-align: center;
  border-radius: 35px;
  text-transform: none; /*uppercase;*/
  /*menu font  size*/
  font-size: 14px;
}
/* Adjusting header navigation spacing */
.custom_nav-container .navbar-nav {
    display: flex;
    align-items: center;
    gap: 3px; /* Adds consistent spacing between nav items */
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link, .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  /*background-color: #4b208c;*/
background-color:#5f5f5f;
  color: #ffd700;
}
.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.navbar-nav .nav-item {
    margin: 0 10px;
    padding: 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 8px 15px;
    margin: 0;
}
/* Dropdown styling */
.navbar-nav .dropdown-menu {
  background-color: #000000;  /* Matches your hero_area background */
  border: none;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);  /* Subtle golden glow */
}

.navbar-nav .dropdown-item {
  color: #ffd700;  /* Matches your nav-link color */
  padding: 7px 20px;
  font-size: 14px;  /* Matches your menu font size */
  text-transform: uppercase;  /* Matches your nav style */
}

.navbar-nav .dropdown-item:hover {
  background-color: #5f5f5f;  /* Matches your nav-link hover */
  color: #ffd700;
}

/* Active dropdown styling */
.navbar-nav .nav-item.dropdown.show .nav-link {
  background-color: #5f5f5f;
  color: #ffd700;
  border-radius: 35px;
}

.navbar-nav .nav-item.dropdown {
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  
/* Mobile dropdown items */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}
  .navbar-nav .dropdown-item {
    padding: 7px 20px 7px 35px;  /* Add indent for dropdown items on mobile */
  }
}

/* Hover dropdown functionality */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown .dropdown-menu {
  margin-top: 0;
  display: none;
}

/* Rest of your dropdown styling remains the same */
.navbar-nav .dropdown-menu {
    margin-top: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    text-align: center;
}

#authButtons {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

#authButtons .btn {
    margin: 0 5px;
    padding: 8px 15px;
}

@media (max-width: 1200px) {
    .custom_nav-container {
        flex-direction: column;
    }

    .navbar-nav,
    #authButtons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item,
    #authButtons .btn {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}

.navbar-nav .dropdown-item {
  color: #ffd700;
  padding: 7px 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.navbar-nav .dropdown-item:hover {
  background-color: #5f5f5f;
  color: #ffd700;
}

/* Remove dropdown arrow - stronger specificity */
.navbar-nav .nav-item .nav-link.dropdown-toggle::after,
.dropdown-toggle::after,
.custom_nav-container .navbar-nav .nav-item .dropdown-toggle::after {
    display: none !important;
    border: none !important;
    content: none !important;
}
/* Show dropdown on hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Dropdown menu styling */
.dropdown-menu {
  background-color: #5f5f5f !important;
  border: none;
  margin-top: 0;
  padding: 0 !important;
  width: calc(100% - 40px) !important;  /* Adjusted width */
  left: 20px !important;  /* Adjusted left position */
  overflow: hidden !important;
  border-radius: 35px !important;
  min-width: unset !important;  /* Added to override Bootstrap default */
}

/* Specific styling for Solutions dropdown */
#solutionsDropdown + .dropdown-menu {
  position: absolute !important;  /* Ensure the dropdown positions relative to its container */
  left: 50% !important; /* Align directly under 'Partner' */
  transform: translateX(-50%) !important; /* Prevent any unwanted shifts */
  width: 200px !important; /* Adjust width if needed */
}
#partnerDropdown + .dropdown-menu {
  position: absolute !important;  /* Ensure the dropdown positions relative to its container */
  left: 50% !important; /* Align directly under 'Partner' */
  transform: translateX(-50%) !important; /* Prevent any unwanted shifts */
  width: 170px !important; /* Adjust width if needed */
}


.dropdown-item {
  color: #ffd700 !important;
  padding: 7px 20px;
  font-size: 14px;
  text-transform: uppercase;
  background-color: #5f5f5f !important;
  text-align: center;
  border-radius: 0 !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  background-color: #8f8f8f !important;
  color: #ffd700 !important;
  border-radius: 0 !important;
}

.nav-item.dropdown {
  display: inline-block;  /* Added to contain dropdown width */
}

/* Remove dropdown arrow - with higher specificity */
.navbar-nav .nav-item .nav-link.dropdown-toggle::after,
.dropdown-toggle::after,
.custom_nav-container .navbar-nav .nav-item .dropdown-toggle::after {
    display: none !important;
    border: none !important;
    content: none !important;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  margin-left: 0;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*company logo*/
.navbar-brand img {
  margin-right:8px;
  width: 120px;
}
/*company name*/
.navbar-brand span {
  font-size: 22px;
  font-weight: 500;
  /*color: #4b208c;*/
  color: #ffffff;
}

.custom_nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  /*background-color: #190734;*/
  background0color:#ffd700;
  margin: 7px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  /*color: #4b208c;*/
  color:#ffd700;
  padding: 60px 0;
  padding-bottom: 258px;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail_box {
  /*color: #000000;  for words on main page*/
  color: #ffffff;
  padding-right: 30px;
}

.slider_section .detail_box h1 {
  text-transform: uppercase;
  font-weight: bold;
}

.slider_section .detail_box p {
  margin-top: 20px;
}

.slider_section .detail_box a {
  display: inline-block;
  padding: 10px 30px;
  /*background-color: #4b208c; color for contact menu on main page center*/
  background-color: #5f5f5f;
  color: #ffd700;
  border-radius: 35px;
  margin-top: 35px;
}

.slider_section .detail_box a:hover {
  /*background-color: #5625a1;original */
background-color: #8f8f8f;
}

.slider_section .img_container {
  border: 7px solid #ffd700;
  /*border: 7px solid #4b208c;*/
  border-radius: 100%;
  overflow: hidden;
}

.slider_section .img_container div#carouselExampleContarols {
  width: 100%;
  position: unset;
}

.slider_section .img_container .img-box img {
  width: 100%;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  top: initial;
  left: initial;
  bottom: 5%;
  right: 10%;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}

.slider_section .carousel-control-prev {
 background-image: url(../images/prev.png);
  background-color: #ff0000; /* color darker red #960019;#b200ed; purple*/
 -webkit-transform: translate(-65px, 30px);
          transform: translate(-65px, 30px);
}

.slider_section .carousel-control-next {
  background-image: url(../images/next.png);
  /*background-color: #4b208c;*/
  background-color: #ddf700;
  -webkit-transform: translate(-28px, 5px);
          transform: translate(-28px, 5px);
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service_section {
  /*background-color: #f3f0f6;*/
  background-color: #121212;
}

.service_section .service_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service_section .service_container .box {
  margin: 20px;
  min-width: 300px; /* Minimum width for boxes */
  -ms-flex-preferred-size: 38%;
      flex-basis: calc(33.333% - 40px); /* Better box sizing */
  padding: 15px 25px 25px; /* 15px place controls the space between video and box top*/
  border-radius: 35px; /* for box corner cutoff*/
  -webkit-box-shadow: 0 0 10px 0 #fcfbfb84;
          box-shadow: 0 0 10px 0 rgba(244, 242, 242, 0.466);
  border-top: 15px solid transparent;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
}

/* Common styles for both image and video containers */
.service_section .service_container .box .img-box,
.service_section .service_container .box .video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 208px; /* Match the width of your images. control the hight of the boxes */
  overflow: hidden;
  margin-bottom: 10px;
}

/* Image specific styles */
.service_section .service_container .box .img-box img {
  width: 388px;
  height: 90%;
  object-fit: cover;
}
/* Video specific styles */
.service_section .service_container .box .video-container video {
  width: 388px;
  height: 90%;
  object-fit: cover;
}

.service_section .service_container .box .detail-box {
  margin-top: 15px;
}

.service_section .service_container .box .detail-box h5 {
  color: #f0eff1;
  font-weight: 600;
  position: relative;
}

.service_section .service_container .box:hover, .service_section .service_container .box.active {
  border-top: 15px solid #512a97;
}

.service_container .box a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service_container .box:hover {
    cursor: pointer;
}
.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  /*background-color: #4b208c;*/
background-color: #8f8f8f;
  color: #ffffff;
  border-radius: 45px;
}

/*.service_section .btn-box a:hover {
  background-color: #5625a1;
}*/

.service_container .box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #8f8f8f;
  color: #ffd700;
  border-radius: 35px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.service_container .box a:hover {
  background-color: #5f5f5f;
  color: #ffd700;
  text-decoration: none;
}

.about_section h1,
.about_section h2 {
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;*/
  font-family: "Poppins", sans-serif !important;
  font-weight: 900 !important;  /* Extra bold like the image */
  font-size: 2.5rem !important; /* Large size */
  line-height: 1.2 !important;  /* Tight line spacing */
  letter-spacing: 1px !important; /* Slight letter spacing */
  text-transform: uppercase !important; /* Makes it all caps */
}

/* If you want to highlight specific words in yellow like "GENERATIVE AI" */
.highlight-yellow {
  color: #ffc107 !important; /* Yellow color */
}
.about_section .detail-box p,
.about_section .detail-box h2 strong;
.about_section .detail-box{
font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}
.about_section .detail-box li {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.about_section {
 /*background-color: #f3f0f6;*/
  background-color: #121212;
  padding-bottom: 258px; /* main body height for about section*/
}


.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about_section .img_container .img-box {
  /*border: 5px solid #7b57b2;*/
    border: 5px solid #ffd700;
  border-radius: 100%;
  overflow: hidden;
}

.about_section .img_container .img-box.b1 {
  width: 75%;
}

.about_section .img_container .img-box.b2 {
  width: 60%;
  margin-left: auto;
  margin-top: -12%;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  margin-right: 20%;
}

.about_section .detail-box p {
  margin-top: 25px;
  font-size: 22px;
}

/* about page learning more button style */
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 15px;
  /*background-color: #4b208c;*/
  background-color: #5f5f5f;
  color: #ffd700;
  border-radius: 15px;  /*round corner*/
  margin: 25px 0 45px 0;
font-size: 18px;
}

.about_section .detail-box a:hover {
  background-color: #5625a1;
}

.blog_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
margin-top: 45px;
}
.blog_section {
  /*background-color: #f3f0f6;*/
  background-color: #121212;
}
.blog_section .heading_container h2::before {
  background-color: #ffffff;
 
}

.blog_section .box {
  margin-top: 55px;
  background-color: #0b0b0b;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
  height 50%;
}

.blog_section .box .detail-box {
  padding: 25px 25px 15px;
}

.blog_section .box .detail-box h5 {
  font-weight: bold;
}

.contact_section {
  position: relative;
}

.contact_section {
  /*background-color: #f3f0f6;*/
  background-color: #121212;
  padding-bottom: 258px;
}


.contact_section form {
  margin-top: 45px;
  padding-right: 35px;
}

.contact_section input {
  width: 82%;
  border: none;
  height: 38px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #646262;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(248, 251, 252, 0.921);
  box-shadow: 0px 2px 5px 0px rgba(253, 252, 252, 0.963);
}

.contact_section input::-webkit-input-placeholder {
  color: #f4ecec;
}

.contact_section input:-ms-input-placeholder {
  color: #f1f0f0;
}

.contact_section input::-ms-input-placeholder {
  color: #fbf6f6;
}

.contact_section input::placeholder {
  color: #f4efef;
}

.contact_section input.message-box {
  height: 180px;
  width: 82%;
    resize: vertical; /* Allows user to resize vertically */
    min-height: 100px;
}
/*for message area*/
.contact_section textarea {
    width: 82%;
    border: none;
    background-color: #FFFFFF;
    outline: none;
    color: #646262;
    box-shadow: 0px 2px 5px 0px rgba(253, 252, 252, 0.963);
    margin-bottom: 25px;
    padding: 15px 25px;
    min-height: 28px;
    resize: vertical;
}

/* contact page send menu*/
.contact_section button {
  border: none;
  display: inline-block;
  /*padding: 12px 45px; org */
padding: 10px 35px;
  /*background-color: #4b208c;*/
  background-color: #8f8f8f;
  color: #ffffff;
  /*border-radius: 0px; org */
border-radius: 5px;
  /*margin-top: 35px;*/
margin: 25px 0 45px 0;
}

.contact_section button:hover {
  background-color: #5625a1;
}

.contact_section .map_container {
  height: 95%;
  min-height: 260px;
}

.contact_section .map_container .map-responsive {
  height: 95%;
}

.footer_bg {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: top;
}

/* info section */
.info_section {
  background-color: #190734;
  color: #ffffff;
}

.info_section h6 {
  font-weight: bold;
}

.info_section .info_contact {
  margin-top: 10px;
  margin-bottom: 5px;
}

.info_section .info_contact .col-md-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .info_contact a {
  color: #ffffff;
}

.info_section .info_contact img {
  max-width: 100%;
  margin-right: 10px;
}

.info_section .info_form {
  margin: 0 auto;
  margin-bottom: 45px;
}

.info_section .info_form h4 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_form form input {
  background-color: #ffffff;
  border: none;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  outline: none;
  color: #000000;
  min-height: 42.4px;
  padding-left: 15px;
}

.info_section .info_form form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  display: inline-block;
  padding: 10px 35px;
  /*background-color: #4b208c;*/
background-color: #8f8f8f;
  color: #ffffff;
  border-radius: 0;
  font-size: 15px;
  text-transform: uppercase;
}

.info_section .info_form form button:hover {
  background-color: #5625a1;
}

.info_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social img {
  width: 30px;
  margin-right: 8px;
}

/* end info section */
/* footer section*/
.footer_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.footer_section p {
  color: #222222;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.footer_section p a {
  color: #222222;
}
.privacy-footer-container {
  position: absolute;
  bottom: 20px;
  right: 40px;
  text-align: right;
}

.privacy-footer-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}

.privacy-footer-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Make sure the footer section has relative positioning */
.info_section {
  position: relative;
}

/*# sourceMappingURL=style.css.map */

/* Authentication Styles */
#authButtons .btn {
    padding: 6px 12px; /* Slightly reduced padding */
    margin: 0; /* Remove default margins */
}


@media (max-width: 991px) {
  #authButtons {
    margin-top: 15px;
  }
}

/* Authentication Modal Styles */
.modal {
    z-index: 1050;
}

.modal-content {
    background-color: #fefefe !important;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 428px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-backdrop {
    background-color: rgba(0,0,0,0.4);
}

.modal form {
    display: flex;
    flex-direction: column;
}

.modal form label {
    margin-top: 10px;
}

.modal form input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.modal form button {
    margin-top: 10px;
    padding: 10px;
    background-color: #4CAF50;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}




/* Modal Title Styling */
.modal-title,
#authTitle {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin-bottom: 15px !important;
}

.modal-header {
    padding-bottom: 15px !important;
}
.modal form button:hover {
    background-color: #45a049;
}

#profileContent {
    margin-top: 20px;
}

#profileContent p {
    margin-bottom: 10px;
}

/* Modal Close Button */
.modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal .close:hover,
.modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Form Controls in Modal */
.modal .form-group {
    margin-bottom: 1rem;
}

.modal .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}


/* Auth Buttons Styling */
/*#authButtons {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Consistent spacing between auth buttons */
}*/

/* Auth Buttons Styling */
#authButtons {
    display: inline-flex;
    align-items: center;
}

#authButtons .btn,
#signUpBtn,
#logInBtn,
#profileBtn,
#logoutBtn {
    padding: 7px 20px;
    margin: 10px 15px;  /* Match nav padding */
    color: #ffd700; /* text color on signup, login tab*/
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
    border: 0 !important;
    outline: 0 !important;
    background: none !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 35px !important;  /* Match nav border-radius */
    -webkit-appearance: none !important;
    appearance: none !important;
    transition: background-color 0.3s;
}

/* Hover effect */
#authButtons .btn:hover,
#signUpBtn:hover,
#logInBtn:hover,
#profileBtn:hover,
#logoutBtn:hover {
    background-color: #5f5f5f !important;
    color: #ffd700;
    border-radius: 35px !important;  /* Ensure border-radius on hover */
}


/* Add this to match nav alignment */
.d-flex.ml-auto.flex-column.flex-lg-row.align-items-center {
    align-items: center !important;
}



.navbar-nav,
#authButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adds space between buttons */
}

#authButtons .btn:hover,
#authButtons .btn:focus,
#authButtons .btn:active,
#authButtons .btn-primary,
#authButtons .btn-success {
    background-color: #5f5f5f !important;   
    color: #ffd700;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Remove any Bootstrap default styles */
.btn.btn-primary,
.btn.btn-success {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
/* Profile and Logout buttons */
#profileBtn, #logoutBtn {
    padding: 7px 20px;
    color: #ffd700;
    background-color: transparent; 
}

#profileBtn:hover, #logoutBtn:hover {
    background-color: #5f5f5f;
    color: #ffd700;    
}

/* Modal Text Colors */
.modal-content {
    color: #333 !important;
}

.modal-title {
    color: #333 !important;
}

.modal label {
    color: #333 !important;
}

.modal input {
    color: #333 !important;
}

.form-group label {
    color: #333 !important;
}

#authForm label,
#authForm input,
#profileContent {
    color: #333 !important;
}

.modal .form-control {
    color: #333 !important;
}

#profileContent p strong {
    color: #333 !important;
}

/* Modal Submit Button */
.modal form button[type="submit"],
#authForm button[type="submit"],
.modal-body form .btn-primary {
    background-color: #666666 !important; /* Dark grey */
    color: #FFD700 !important; /* yellow text for better readability on yellow */
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover effect for submit button */
.modal form button[type="submit"]:hover,
#authForm button[type="submit"]:hover,
.modal-body form .btn-primary:hover {
    background-color: #777777 !important; /* Slightly lighter grey on hover */
    color: #FFD700 !important; /* Keep yellow text on hover */
}

/* Custom styles for the confirmation modal */

#confirmationModal .modal-dialog {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%; /* Ensure it occupies full height for centering */
}

#confirmationModal .modal-content {
    background-color: #f8f9fa; /* Change background color */
    border-radius: 10px; /* Rounded corners */
}

#confirmationModal .modal-header {
    display: flex; /* Use Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #D3D3D3; /* Header background color */
    color: #FFFF00; /* Header text color */
    padding: 10px; /* Adjust padding as needed */
    width: 100%; /* Full width */
}

#confirmationModal .modal-title {
    font-family: 'Poppins', sans-serif; /* Change font */
    font-size: 18px; /* Title font size */
    margin: 0; /* Remove margin */
    text-align: center; /* Center text */
    flex-grow: 1; /* Allow title to take available space */
}

#confirmationModal .modal-body {
    font-family: 'Poppins', sans-serif; /* Change font */
    font-size: 15px; /* Body font size */
    color: #333; /* Body text color */
    padding: 10px; /* Adjusted padding */
    line-height: 1.4; /* Improve line spacing */
}

#confirmationModal .btn-secondary {
    background-color: #909090; /* Button background color */
    color: #FFFF00; /* Button text color */
    font-size: 14px; /* Button font size */
}

#confirmationModal .btn-secondary:hover {
    background-color: #5a6268; /* Button hover color */
}

/* Add these styles to your style.css */
.mission_section, .vision_section {
  background-color: #121212;
  color: #ffffff;
}

.vision-box {
  background-color: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 25px;
  margin: 15px 0;
  transition: transform 0.3s ease;
  height: 100%;
}

.vision-box:hover {
  transform: translateY(-5px);
}

.vision-box h4 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.vision-box p {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
}

.mission-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;

}

.mission-list li {
  color: #ffffff;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
font-size: 20px;
  
}

.mission-list li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Offset for fixed header */
#about-section, #mission-section, #vision-section {
  scroll-margin-top: 80px;
}

@media (max-width: 768px) {
  .vision-box {
    margin-bottom: 20px;
  }
}

.privacy_section {
  margin-top: 20px;
  background-color: #121212;
}
/* Adjust hero area height specifically for privacy page */
.privacy-page .hero_area {
  height: auto;
  min-height: auto;
  padding-bottom: 20px;
}

.privacy_section .container {
  padding-top: 30px; /* Add some padding to the container instead */
}
.privacy_section .heading_container {
  margin-bottom: 30px;
}
.privacy_section .heading_container h2 {
  color: #ffd700;
}
.privacy_section .privacy-content {
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.privacy_section .policy-date {
  color: #888;
  font-style: italic;
  margin-bottom: 30px;
}

.privacy_section h3 {
  color: #ffd700;
  font-size: 24px;
  margin: 40px 0 20px;
  font-weight: 600;
}

.privacy_section h4 {
  color: #ffd700;
  font-size: 20px;
  margin: 25px 0 15px;
  font-weight: 500;
}

.privacy_section .policy-section {
  margin-bottom: 40px;
}

.privacy_section p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy_section ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy_section ul li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.privacy_section ul li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: -15px;
}
.privacy_section .policy-text {
  color: #ffffff;
  line-height: 1.8;
}

.privacy_section .policy-date {
  color: #888;
  font-style: italic;
}
@media (max-width: 768px) {
  .privacy_section .privacy-content {
    padding: 15px;
  }
  
  .privacy_section h3 {
    font-size: 20px;
  }
  
  .privacy_section h4 {
    font-size: 18px;
  }
}
/* Terms and Conditions Page Styles */
.terms_section {
  margin-top: 20px;
  background-color: #121212;
}

/* Adjust hero area height specifically for terms page */
.terms-page .hero_area {
  height: auto;
  min-height: auto;
  padding-bottom: 20px;
}

.terms_section .container {
  padding-top: 30px;
}

.terms_section .heading_container {
  margin-bottom: 30px;
}

.terms_section .heading_container h2 {
  color: #ffd700;
}

.terms_section .terms-content {
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.terms_section .policy-date {
  color: #888;
  font-style: italic;
  margin-bottom: 30px;
}

.terms_section h3 {
  color: #ffd700;
  font-size: 24px;
  margin: 40px 0 20px;
  font-weight: 600;
}

.terms_section h4 {
  color: #ffd700;
  font-size: 20px;
  margin: 25px 0 15px;
  font-weight: 500;
}

.terms_section .policy-section {
  margin-bottom: 40px;
}

.terms_section p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.terms_section ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms_section ul li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.terms_section ul li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: -15px;
}

.terms_section .policy-text {
  color: #ffffff;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .terms_section .terms-content {
    padding: 15px;
  }
  
  .terms_section h3 {
    font-size: 20px;
  }
  
  .terms_section h4 {
    font-size: 18px;
  }
}


/* Add to your existing style.css */

/* Solution box specific styling */
.service_container .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
}

.service_container .box .img-box {
  margin-bottom: 20px;
}

.service_container .box .detail-box {
  text-align: center;
  width: 100%;
}

.service_container .box .detail-box h5 {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 15px;
}

.service_container .box .detail-box p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: left; /*this align the text p to the left for products-solutions*/
}

.service_container .box .features {
  text-align: left;
  margin: 0 auto;
  width: 80%;
}

.service_container .box .features li {
  color: #ffffff;
  margin-bottom: 14px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}

/*.service_container .box .features li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
  top: 0;
}*/

/* Add these styles to your style.css file */

/* Media AI specific styles */
.media-ai-section {
  min-height: 200vh;
}

.media-ai-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 50px 0;
}

.media-ai-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.media-ai-box {
  width: 1000px;
  background-color: #121212 !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.media-ai-box .img-box {
  width: 100%;
  height: 680px;
  position: relative;
  overflow: hidden;
}

.media-ai-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-ai-description {
  width: 800px;
  padding: 20px;
  text-align: center;
}

.media-ai-description h5 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.media-ai-description p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.media-ai-description .features {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.media-ai-description .features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.media-ai-description .features li {
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}

.media-ai-description .features li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 135px;
  font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .media-ai-box, 
  .media-ai-description {
    width: 95%;
  }
  
  .media-ai-box .img-box {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .media-ai-container {
    gap: 60px;
  }
  
  .media-ai-box .img-box {
    height: 300px;
  }
  
  .media-ai-description h5 {
    font-size: 24px;
  }
  
  .media-ai-description p {
    font-size: 16px;
  }
}

/* First box (large size) */
.products-solutions-page .heading_container + .service_container .box {
  flex-basis: 55%;
  max-width: 750px;
  width: 750px;
}

/* Middle boxes (Media AI and Sports AI) */
.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box {
  flex-basis: calc(45% - 15px);
  max-width: 800px;
}

/* Middle boxes image containers */
.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box .img-box {
  height: 280px;
}

.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box .img-box img {
  width: 500px;
  height: 95%;
}

/* Last box (Education AI - large width but shorter height) */
.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box:last-child {
  flex-basis: 55%;
  max-width: 700px;
  width: 700px;
}

.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box:last-child .img-box {
  height: 280px;
}

.products-solutions-page .heading_container[style="margin-top: 50px;"] + .service_container .box:last-child .img-box img {
  width: 450px;
  height: 85%;
}

/*sports-ai*/

/* Specific styles for sports-ai page */
.sports-ai-page .service_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sports-ai-page .service_container .box {
  flex-basis: calc(45% - 15px);
  max-width: 600px;
  margin: 10px;
}

.sports-ai-page .service_container .box .img-box {
  height: 330px;
}

.sports-ai-page .service_container .box .img-box img {
  width: 500px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.sports-ai-page .service_container .box .video-container {
  height: 350px;
}

.sports-ai-page .service_container .box .video-container video {
  width: 500px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.sports-ai-detail p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px; !important
  margin-bottom: 25px;
  text-align: center;
}
/* Responsive adjustment */
@media (max-width: 991px) {
  .sports-ai-page .service_container .box {
    flex-basis: 90%;
    max-width: 800px;
  }
}

/* Update these styles at the bottom of your style.css */
.sliding-text-container {
    width: 420px;
    margin: -10px 0 20px auto;
    display: flex;
    align-items: center;
}

.sliding-text-box {
    background: #000000;
    padding: 8px 15px;
    height: 40px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    width: 100%;
}

.sliding-text-current,
.sliding-text-next {
    color: #ffffff;
    position: absolute;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    transition: transform 0.8s ease;
    width: 100%;
    text-align: center;
    top: 50%;
}

.sliding-text-current {
    transform: translateY(-50%);
}

.sliding-text-next {
    transform: translateX(-100%) translateY(-50%);
}

.sliding-text-link {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
}

.sliding-text-link:hover {
    color: #ffd700; /* Your gold color for hover effect */
    text-decoration: none;
}

#companyDropdown + .dropdown-menu {
  width: auto !important;
  min-width: 100% !important;
 position: absolute !important;
 left: 30%; /*left: 10px !important; Adjusted left position left: 0 !important; */
  transform: translateX(-30%);
 /* transform: none !important;*/
}
#nextButton {
  display: none;
  margin-left: 10px;
  padding: 10px 35px;
  background-color: #5f5f5f;
  color: #ffd700;
  border-radius: 35px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}
#nextButton:hover {
  background-color: #8f8f8f;
}

.subscription-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}

.status-badge.active {
  background-color: #28a745;
  color: white;
}

.status-badge.in-use {
  background-color: #28a745;
  color: white;
}

.status-badge.available {
  background-color: #007bff;
  color: white;
}

.status-badge.inactive {
  background-color: #6c757d;
  color: white;
}

.payment-type-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7em;
  font-weight: bold;
}

.payment-type-badge.manual {
  background-color: #ffc107;
  color: #212529;
}

.payment-type-badge.auto {
  background-color: #17a2b8;
  color: white;
}

.usage-bar {
  width: 100%;
  height: 8px;
  background-color: #444;
  border-radius: 4px;
  margin-top: 5px;
  overflow: hidden;
}

.usage-fill {
  height: 100%;
  background-color: #28a745;
  transition: width 0.3s ease;
}

.expiration-warning {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

.upgrade-btn.urgent {
  background-color: #dc3545;
  color: white;
}

.upgrade-btn.urgent:hover {
  background-color: #c82333;
}

.serial-numbers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.serial-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #1a1a1a;
  border-radius: 5px;
  border: 1px solid #444;
}

.serial-number {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #ffd700;
}

.serial-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-name {
  font-size: 0.9em;
  color: #ccc;
}

.status-badge.past-due {
  background-color: #dc3545;
  color: white;
  animation: pulse 2s infinite;
}

.status-badge.expired {
  background-color: #6c757d;
  color: white;
}

.status-badge.unknown {
  background-color: #ffc107;
  color: #212529;
}

.expired-subscription {
  border: 2px solid #dc3545;
  border-radius: 8px;
  padding: 20px;
  background-color: #2a2a2a;
}

.expired-subscription .subscription-header {
  border-bottom: 1px solid #444;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.recovery-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .subscription-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .recovery-actions {
    flex-direction: column;
  }
  
  .recovery-actions button {
    margin-left: 0 !important;
  }
}

/* Blog message box using textarea */
.blog-message-box {
    width: 100%;
    height: 100px; /* Fixed height for scrolling */
    border: none;
    background-color: #0b0b0b; /* Match your blog box background */
    color: #ffffff;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    resize: none; /* Prevent user from resizing */
    outline: none;
    border-radius: 5px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Custom scrollbar for textarea */
.blog-message-box::-webkit-scrollbar {
    width: 8px;
}

.blog-message-box::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.blog-message-box::-webkit-scrollbar-thumb {
    background: #5f5f5f;
    border-radius: 4px;
}

.blog-message-box::-webkit-scrollbar-thumb:hover {
    background: #ffd700; /* Your gold color on hover */
}

/* Remove focus outline but keep functionality */
.blog-message-box:focus {
    outline: 1px solid #ffd700;
    outline-offset: -1px;
}

/* Simple scrollable blog content - add to bottom of style.css */
.blog_section .box .detail-box p {
    max-height: 300px !important;
    overflow-y: auto !important;
    padding-right: 10px !important;
    white-space: pre-line !important;
    font-size:18px;
}

/* Scrollbar styling */
.blog_section .box .detail-box p::-webkit-scrollbar {
    width: 8px;
}

.blog_section .box .detail-box p::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.blog_section .box .detail-box p::-webkit-scrollbar-thumb {
    background: #5f5f5f;
    border-radius: 4px;
}

.blog_section .box .detail-box p::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}
