
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2B2A33; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {
  --nav-color: #00BF63;  /* The default color of the main navmenu links */
  --nav-hover-color: #2B2A33; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: black; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: black; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: linear-gradient(
    rgb(48, 48, 48) 13%,
    rgb(30, 30, 30) 40%,
    #0c0d11 86%
  );
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Header Styling */
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: linear-gradient(
    rgb(48, 48, 48) 13%,
    rgb(30, 30, 30) 40%,
    #0c0d11 86%
  );
}

/* Topbar */
.header .topbar {
  background-color: black;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Contact Info */
.header .topbar .contact-info i {
  font-style: normal;
  color: green;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: green;
}

/* Social Links */
.header .topbar .social-links a {
  color: color-mix(in srgb, green, transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

/* Branding */
.header .branding {
  min-height: 60px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* CTA Button */
.header .cta-btn,
.header .cta-btn:focus {
  color: black;
  background: darkgreen;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: #32CD32;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .header .topbar {
    height: auto;
    flex-direction: column;
    padding: 5px 10px;
    text-align: center;
  }

  .header .topbar .contact-info {
    display: block;
    margin-bottom: 5px;
  }

  .header .branding {
    flex-direction: column;
    text-align: center;
  }

  .header .cta-btn {
    margin: 10px 0;
    width: 25%;
    text-align: center;
  }
}

/* Smaller Mobile Screens */
@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    margin: 10px 0;
    width: 25%;
    text-align: center;
  }
}

/* Header Scroll Effect */
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Main Navbar */
.main_home_navbar {
  background: linear-gradient(
    rgb(48, 48, 48) 13%,
    rgb(30, 30, 30) 40%,
    #0c0d11 86%
  );
  padding: 5px 0; /* Adjusted padding for a smaller navbar */
}

.main_home_navbar .navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.main_home_navbar .navmenu li {
  position: relative;
}

.main_home_navbar .navmenu > ul > li {
  white-space: nowrap;
  padding: 8px 14px; /* Reduced padding for smaller menu items */
}

.main_home_navbar .navmenu > ul > li:last-child {
  padding-right: 0;
}

/* Menu Links */
.main_home_navbar .navmenu a,
.main_home_navbar .navmenu a:focus {
  color: #32CD32; /* Green menu text */
  font-size: 15px;
  font-weight: 700; /* Bold font weight */
  padding: 8px 14px; /* Adjusted padding */
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  position: relative;
  text-decoration: none !important;
}

/* Active and Hover State */
.main_home_navbar .navmenu a:hover,
.main_home_navbar .navmenu .active,
.main_home_navbar .navmenu .active:focus {
  color: #059652 !important; /* White text when active */
}

/* Hover and Active Underline */
.main_home_navbar .navmenu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: white;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out;
}

.main_home_navbar .navmenu a:hover:before,
.main_home_navbar .navmenu li:hover > a:before,
.main_home_navbar .navmenu .active:before {
  visibility: visible;
  width: 100%;
}

/* Dropdown Menu */
.main_home_navbar .navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: black;
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.main_home_navbar .navmenu .dropdown ul li {
  min-width: 200px;
}

.main_home_navbar .navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  color: #32CD32;
}

.main_home_navbar .navmenu .dropdown ul a:hover {
  color: white;
}

/* Show Dropdown */
.main_home_navbar .navmenu .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .main_home_navbar .mobile-nav-toggle {
    color: white; /* Mobile menu icon color */
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .main_home_navbar .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .main_home_navbar .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .main_home_navbar .navmenu a,
  .main_home_navbar .navmenu a:focus {
    color: #32CD32;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 700; /* Bold font weight for mobile */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }

  .main_home_navbar .navmenu a:hover,
  .main_home_navbar .navmenu .active {
    color: black;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: white;
    font-size: 32px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  .mobile-nav-active .main_home_navbar .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
  }

  .mobile-nav-active .main_home_navbar .navmenu > ul {
    display: block;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background: linear-gradient( 
  rgb(48, 48, 48) 13%,
  rgb(30, 30, 30) 40%,
  #0c0d11 86%); /* Linear gradient background */
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: whitesmoke;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
   font-size: 14px;
  font-family: var(--heading-font);
  text-align: left; /* Ensures left alignment */
  color: whitesmoke;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, whitesmoke, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, white, transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color:whitesmoke;
}
.footer h2{
  font-size: 38px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: whitesmoke;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: whitesmoke;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: whitesmoke;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
  color: whitesmoke;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: whitesmoke;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, white, transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: whitesmoke;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, white, transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
  color: green;
}
.footer .credits a{
  margin-top: 8px;
  font-size: 15px;
  font-weight: bold;
  color: yellow;
}

/* Style for the footer links as buttons */
.footer-links-btn .cta-btn {
  text-align: center;
  color: #fff; /* Text color */
  background-color: darkgrey; /* Green button */
  padding: 6px 15px; /* Padding for better button appearance */
  margin: 25% auto; /* Centering the button with auto margin */
  border-radius: 50px; /* Rounded corners */
  font-size: 14px;
  display: block; /* Ensures the button is a block-level element */
  transition: background-color 0.3s, transform 0.2s;
}


.footer-links-btn .cta-btn:hover {
  background-color: #32CD32; /* Lighter green on hover */
  transform: scale(1.05);
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
  .footer .footer-about, 
  .footer .footer-links, 
  .footer .footer-contact {
    text-align: center; /* Center align content */
    margin-bottom: 20px;
  }

  .footer .footer-about p, 
  .footer .footer-links ul li, 
  .footer .footer-contact p {
    font-size: 14px; /* Adjust font size */
  }

  .footer-links-btn .cta-btn {
    width: 100%; /* Full width buttons on small screens */
    margin-bottom: 1px;
  }
}
/* Ensure footer-links-btn is visible on mobile */
/* Ensure footer-links-btn is visible on mobile */
@media (max-width: 576px) {
  .footer-links-btn {
    display: block !important; /* Force the visibility */
    width: 100%; /* Ensure it's using the full width of its parent */
    visibility: visible !important; /* Ensure it is not hidden */
  }

  .footer-links-btn .cta-btn {
    width: 100%; /* Full width buttons on small screens */
    margin-bottom: 15px; /* Spacing between buttons */
  }

  .footer h2 {
    font-size: 30px; /* Reduce header font size */
  }

  .footer h4 {
    font-size: 14px; /* Adjust subheader font size */
  }

  .footer .footer-links ul li {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the left */
  }

  .footer .footer-contact p {
    text-align: left; /* Align contact text to the left */
  }
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}






/*--------------------------------------------------------------
# Globe Section
--------------------------------------------------------------*/
/* Globe Section */
#globe {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  color: white;
  z-index: 1;
  overflow: hidden; /* Prevents overflow due to video */
}

/* Video Styling */
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the section without distortion */
  z-index: -1; /* Places the video behind the content */
}

/* Globe Landing */
#globe_landing {
  position: absolute; /* Position it relative to its nearest positioned ancestor */
  top: 50%; /* Centers vertically */
  left: 50%; /* Centers horizontally */
  transform: translate(-50%, -50%); /* Adjusts to ensure exact centering */
  z-index: 1; /* Brings text content above the video */
  text-align: center;
  padding: 50px 20px; /* Padding for mobile responsiveness */
  background: rgba(0, 0, 0, 0); /* Fully transparent background */
  border-radius: 10px; /* Optional: Adds rounded corners */
  width: 100%; /* Ensure it takes full width */
  max-width: 1200px; /* Limits the max width to prevent it from being too wide */
  box-sizing: border-box; /* Prevents padding from affecting width calculation */
}

/* Globe Container */
.globe_container h1 {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: white; /* Ensure text is visible on transparent background */
}

.globe_container p {
  font-size: 2.5em;
  margin-top: 20px;
  color: white; /* Ensure text is visible on transparent background */
}

/* Responsive Adjustments */

/* For screens smaller than 1900px */
@media (max-width: 1900px) {
  #globe_landing {
    padding: 40px 20px;
  }

  .globe_container h1 {
    font-size: 3.5em;
  }

  .globe_container p {
    font-size: 2.2em;
  }
}

/* For large screens (Desktop monitors, mini laptops like 14/15/16 inch) */
@media (max-width: 1200px) {
  #globe_landing {
    padding: 30px 15px;
  }

  .globe_container h1 {
    font-size: 2.8em;
  }

  .globe_container p {
    font-size: 1.8em;
  }
}

/* For medium devices (Tablets, small laptops, or large phones in landscape mode) */
@media (max-width: 992px) {
  #globe_landing {
    padding: 25px 10px;
  }

  .globe_container h1 {
    font-size: 2.3em;
  }

  .globe_container p {
    font-size: 1.5em;
  }
}

/* For small devices (Mobile phones, small tablets) */
@media (max-width: 768px) {
  #globe_landing {
    padding: 20px 10px;
  }

  .globe_container h1 {
    font-size: 2em;
  }

  .globe_container p {
    font-size: 1.2em;
  }
}

/* For very small devices (Mobile portrait) */
@media (max-width: 480px) {
  #globe_landing {
    padding: 15px 5px;
  }

  .globe_container h1 {
    font-size: 1.8em;
  }

  .globe_container p {
    font-size: 1em;
  }
}








/*--------------------------------------------------------------
# What we do
--------------------------------------------------------------*/
/* Secu About Section */
#secu_about {
  background: linear-gradient(
        #000 30%,     /* Black Upper */
        #222 70%,     /* Dark Grey Middle */
        #1b1b1b 100%  /* Dark Grey Bottom */
  );
  padding: 80px 0;
}

.secu_about .container {
  max-width: 85%;
  margin: auto;
}

.secu_about img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secu_about_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secu_about_content h3 {
  color: #32CD32;
  font-weight: bold; 
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.secu_about_content p {
  font-size: 1.1rem;
  color: #228B22;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards per row */
  gap: 20px;
  width: 100%;
  margin: auto;
}

/* Feature Card Wrapper */
.feature-card {
  perspective: 1000px;
  width: 100%;
  min-height: 250px; /* Ensures cards are same height */
  display: flex;
  align-items: stretch;
}

/* Inner Flip Card */
.card-inner {
  width: 100%;
  min-height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  position: relative;
}

/* Ensure cards don't overlap */
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

/* Front Side */
.card-front {
  background: rgb(63, 60, 60);
  transition: background 0.3s ease;
}

.card-front:hover {
  background: #228B22;
}

.card-front i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #228B22;
}

.card-front h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

/* Back Side */
.card-back {
  background: #228B22;
  color: #fff;
  transform: rotateY(180deg);
}

.card-back p {
  font-size: 1rem;
  color:#000;
}

/* Hover Flip Effect */
.feature-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }

  .secu_about_content h3 {
    font-size: 2rem;
  }

  .secu_about_content p {
    font-size: 1rem;
  }
}

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

  .features-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 card per row on small screens */
  }
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/



#stats {
  padding: 60px 0;
  background: url('/static/assets/img/map.jpg'); /* Add background image here */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Creates a parallax effect */
  background-repeat: no-repeat; /* Prevents image repetition */
  color: green; /* Light text color for contrast */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Adds a soft shadow */
}




.stats i {
  background-size: cover; /* Ensures the background image covers the entire icon */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating the image */
  background-color: black;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.stats i:hover {
  transform: scale(1.1);
  background-color: var(--primary-color); /* Change to any color on hover */
  color: var(--background-color); /* Change icon color on hover */
}

.stats-heading {
  font-weight: bold;
  text-align: center;
  color: white;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
  transition: transform 0.3s ease-in-out;
}

.stats .stats-item:hover {
  transform: translateY(-10px); /* Add a subtle lift effect on hover */
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color:  green !important;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: green !important;
  font-size: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .stats .col-lg-4 {
    flex: 0 0 100%; /* Make stats items stack vertically on smaller screens */
    max-width: 100%;
    margin-bottom: 20px; /* Add some spacing between items */
  }

  .stats i {
    width: 48px;
    height: 48px;
    font-size: 22px; /* Slightly reduce the size on smaller screens */
  }

  .stats .stats-item {
    padding: 20px;
  }
}












/*--------------------------------------------------------------
# main_home_services
--------------------------------------------------------------*/
/* General Styling */
.main_home_services {
  padding: 80px 0;
  background: linear-gradient(
        #000 30%,     /* Black Upper */
        #222 70%,     /* Dark Grey Middle */
        #1b1b1b 100%     /* Dark Grey Bottom */
    );
  text-align: center;
}

/* Modern Section Title */
.main_home_services .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: whitesmoke;
}

.main_home_services .section-title::after {
  content: "";
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Service Card */
.service-card {
  width: 100%;
  max-width: 320px;
  height: 280px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, 
              linear-gradient(120deg, #007bff, #00bfff) border-box;
}

.service-card:hover {
  height: 360px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
  border: 2px solid #007bff;
}

/* Service Card Content */
.service-card-content {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Service Icon */
.service-icon {
  font-size: 45px;
  margin-bottom: 15px;
  color: green;
  transition: color 0.3s ease-in-out;
}

.service-card:hover .service-icon {
  color: #0056b3;
}

/* Service Title */
.service-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Short Description (always visible) */
.service-short {
  font-size: 1rem;
  color: #555;
  transition: color 0.3s ease-in-out;
}

.service-card:hover .service-short {
  color: #222;
}

/* Detail Section (Initially Hidden) */
.service-detail {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-in-out, max-height 0.5s ease-in-out;
  padding-top: 15px;
}

.service-card:hover .service-detail {
  opacity: 1;
  max-height: 220px;
}

/* Detail Text */
.service-detail p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #444;
}

/* Learn More Button */
.service-detail .btn {
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.service-detail .btn:hover {
  background: linear-gradient(90deg, #0056b3, #0088cc);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main_home_services .section-title {
    font-size: 2rem;
  }

  .service-card {
    max-width: 100%;
    height: 300px;
  }

  .service-card:hover {
    height: 400px;
  }

  .service-detail {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .main_home_services {
    padding: 50px 0;
  }

  .main_home_services .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    height: 280px;
  }

  .service-card:hover {
    height: 370px;
  }

  .service-detail {
    max-height: 180px;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/* Base Styles */
.faq {
  position: relative;
  width: 100%;
  height: 120vh; /* Set the height of the section */
  color: white;
  z-index: 1;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire background */
  z-index: -1; /* Places the video behind the content */
}

.faq .container {
  position: relative;
  z-index: 1; /* Ensures the FAQ content stays above the video */
}

.faq .faq-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.faq .section-title h2, .faq .section-title p {
  color: white;
  font-weight: bold;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

/* Initially hidden FAQ content */
.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Ensure text inside content is styled correctly */
.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
}

/* Toggle Button */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

/* Active State */
.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

/* FAQ content should fully expand when active */
.faq .faq-container .faq-active .faq-content {
  max-height: 1000px; /* Ensure enough height for expanded content */
  opacity: 1;
  visibility: visible;
  padding-top: 10px;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Rotate the toggle when active */
.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/* Responsive Styles */

/* Large screens (Desktop and monitors) */
@media (min-width: 1200px) {
  .faq .faq-container {
    max-width: 900px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 20px;
  }

  .faq .faq-container .faq-item {
    padding: 25px;
  }
}

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
  .faq .faq-container .faq-item h3 {
    font-size: 18px;
  }

  .faq .faq-container .faq-item {
    padding: 20px;
  }

  .faq .faq-container .faq-item .faq-content {
    padding: 0 10px;
  }
}

/* Small devices (Mobile phones) */
@media (max-width: 768px) {
  .faq {
    height: auto; /* Allow content to flow instead of forcing full viewport height */
  }

  .faq .faq-container {
    max-width: 100%;
    padding: 10px;
  }

  .faq .faq-container .faq-item {
    padding: 15px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
  }

  .faq .faq-container .faq-item .faq-content {
    padding: 0 10px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    font-size: 14px;
    top: 15px;
    right: 15px;
  }
}

/* Very Small Devices (Mobile portrait) */
@media (max-width: 480px) {
  .faq .faq-container {
    padding: 5px;
  }

  .faq .faq-container .faq-item {
    padding: 10px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 14px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    font-size: 12px;
    top: 10px;
    right: 10px;
  }
}

/* Ultra Wide Screens and Large Monitors (1900px and above) */
@media (min-width: 1900px) {
  .faq .faq-container {
    max-width: 1100px; /* Wider container for large screens */
    padding: 40px;
  }

  .faq .faq-container .faq-item {
    padding: 30px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 22px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    font-size: 18px;
  }
}







/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Grid container */
h1 {
  text-align: center; /* Center the text */
  margin-top: 25px; /* Add 25px gap from the top */
  font-size: 2.5rem; /* Optional: Increase the font size */
  font-weight: bold; /* Optional: Make the text bold */
}

.employee-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 100px; /* space between the cards */
  grid-auto-rows: 600px; /* Set each row to 600px height */
  margin: 100px; /* Optional: Adjust margin around the container */
}

/* Styling for individual employee cards */
.employee-card {
  border: 1px solid #ccc; /* Optional: Add border to the cards */
  padding: 10px;
  box-sizing: border-box; /* Ensure padding doesn't affect the card's size */
  background-color: #f9f9f9; /* Optional: Background color */
  text-align: center; /* Center the content */
  overflow: hidden; /* Optional: Hide any overflow content */
}

/* Styling for images */
.employee-card img {
  width: 300px;
  height: 300px;
  object-fit: cover; /* Ensures the image fills the space without distortion */
  margin-bottom: 15px;
}

/* Optional: Add hover effect to employee cards */
.employee-card:hover {
  background-color: #f1f1f1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}











/*--------------------------------------------------------------
# login Page
--------------------------------------------------------------*/
.main_login_body {
  background: url('/static/assets/img/apply.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main_login {
  width: 90%;
  max-width: 450px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Slightly darker for readability */
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  opacity: 0.95;
}

/* Responsive Font Sizes */
.main_login h1 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

.main_login h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Label styles */
form label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: balck;
}

/* Input styles */
form input {
  padding: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

form input:focus {
  border-color: #007bff;
  outline: none;
}

/* Button styles */
button {
  padding: 10px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

button:hover {
  background-color: #0056b3;
}

/* Error messages */
.error-list {
  color: red;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
}

/* Link styles */
p a {
  color: #007bff;
  font-weight: bold;
  transition: color 0.3s ease;
}

p a:hover {
  color: #0056b3;
}

/* Scroll Top Button */
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

#scroll-top:hover {
  background: #0056b3;
}

#scroll-top.show {
  display: block;
}

/* ✅ Responsive Design for All Screens */
@media (max-width: 768px) {
  .main_login {
    width: 95%;
    padding: 15px;
  }

  .main_login h1 {
    font-size: 20px;
  }

  .main_login h3 {
    font-size: 14px;
  }

  form input,
  button {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .main_login {
    padding: 10px;
    border-radius: 8px;
  }

  .main_login h1 {
    font-size: 18px;
  }

  .main_login h3 {
    font-size: 13px;
  }

  form label {
    font-size: 12px;
  }

  form input,
  button {
    font-size: 12px;
    padding: 8px;
  }
}

/* ✅ Ultra-Large Screens (4K and Ultrawide) */
@media (min-width: 1600px) {
  .main_login {
    max-width: 500px;
    padding: 30px;
  }

  .main_login h1 {
    font-size: 30px;
  }

  .main_login h3 {
    font-size: 20px;
  }

  form input,
  button {
    font-size: 18px;
    padding: 14px;
  }
}


/*--------------------------------------------------------------
# sign up 
--------------------------------------------------------------*/

/* Signup Container */
.sign_up_container {
  width: 30%;
  background: white;
  padding: 20px;
  margin: 50px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.sign_up_container h1 {
  margin-bottom: 20px;
  color: #333;
}

/* Form Fields */
.sign_up_container form div {
  margin-bottom: 15px;
  text-align: left;
}

.sign_up_container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #00BF63;
}

.sign_up_container input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Error Messages */
.sign_up_container ul {
  color: red;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

/* Submit Button */
.sign_up_container button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.sign_up_container button:hover {
  background-color: #0056b3;
}

/* Login Link */
.sign_up_container p {
  margin-top: 15px;
}

.sign_up_container a {
  color: #007bff;
  text-decoration: none;
}

.sign_up_container a:hover {
  text-decoration: underline;
}

/* Scroll Top */
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}

#scroll-top:hover {
  background: #0056b3;
}

/* Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive */
@media (max-width: 500px) {
  .sign_up_container {
      width: 90%;
      padding: 15px;
  }
}





/* ............................................................. 
create your profile 1st
............................................................. */

/* ............................................................. 
home Visitor count 
............................................................. */

.sector-visitor {
  background: linear-gradient(
    rgb(48, 48, 48) 13%,
    rgb(30, 30, 30) 40%,
    #0c0d11 86%
  ) !important; /* Gradient background */
  padding: 2px; /* Optional: Add padding for spacing */
}

.visitor-count {
  background: transparent; /* Linear gradient background */
  color: green; /* White text color */
  font-size: 20px; /* Make the text slightly larger */
  font-weight: bold; /* Make the text bold for better emphasis */
  padding: 5px 25px; /* Add some padding to make the element more spacious */
  border-radius: 10px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow to add depth */
  text-align: center; /* Center-align the text */
  max-width: 300px; /* Limit the width for better control */
  margin: 20px auto; /* Center the element horizontally */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.visitor-count:hover {
  transform: translateY(-5px); /* Slight upward movement on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

.visitor-count p {
  margin: 0; /* Remove margin from the paragraph */
}

/* Visitor Count............................................................. */
.visitor-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.visitor-info th, .visitor-info td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.visitor-info th {
  background-color: #f2f2f2;
  color: #333;
}

.visitor-info tr:nth-child(even) {
  background-color: #f9f9f9;
}

.visitor-info tr:hover {
  background-color: linear-gradient(rgb(30, 30, 30) 13%, 
  rgb(48, 48, 48) 40%, 
  #0c0d11 86%) ;
}










/* .............................................................
Leave Management
............................................................. */
/* Container for Leave Requests */

.leave-wrapper {
  padding: 20px;
}

.leave-container {
  max-width: 1200px;
  margin: 0 auto;
}

.leave-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center; /* Center the columns horizontally */
}

.leave-col-6,
.leave-col-12 {
  padding: 15px;
  box-sizing: border-box;
}

.leave-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.leave-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.leave-request-form {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leave-request-form h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
}

.leave-request-form p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}

.leave-request-form button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #344443;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.leave-request-form button:hover {
  background-color: #758374;
}

.leave-requests-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.leave-request-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  flex: 1 1 calc(33.33% - 20px); /* Three cards per row */
  box-sizing: border-box;
}

.leave-request-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.leave-request-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}

.leave-request-item form {
  margin-top: 10px;
}

.leave-action-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.leave-btn {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.leave-btn-success {
  background-color: #28a745;
}

.leave-btn-success:hover {
  background-color: #218838;
}

.leave-btn-danger {
  background-color: #dc3545;
}

.leave-btn-danger:hover {
  background-color: #c82333;
}

.leave-feedback-input {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}

.leave-responses-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.leave-responses-table th,
.leave-responses-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.leave-responses-table th {
  background-color: #f1f1f1;
  font-weight: bold;
}

.leave-no-requests,
.leave-no-responses {
  font-size: 1rem;
  color: #555;
  margin: 15px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .leave-request-item {
    flex: 1 1 calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 768px) {
  .leave-request-item {
    flex: 1 1 100%; /* Single card per row */
  }

  .leave-col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



/* General Styles */
.leave-request-wrapper {
  margin-top: 2rem;
  padding: 1.5rem;
}


.leave-request-info {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

/* Leave Request Cards */
.leave-request-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.leave-request-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leave-request-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #007bff;
}

.leave-action-buttons {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leave-btn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  width: 48%;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.leave-btn:hover {
  opacity: 0.9;
}

.leave-btn-success {
  background-color: #28a745;
  color: #fff;
}

.leave-btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.leave-feedback-input {
  width: 100%;
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.leave-feedback-input:focus {
  border-color: #007bff;
  outline: none;
}

/* No Requests Message */
.leave-no-requests {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6c757d;
}

/* Optional - Responsive Design */
@media (max-width: 768px) {
  .leave-action-buttons {
      flex-direction: column;
      align-items: stretch;
  }

  .leave-btn {
      width: 100%;
      margin-bottom: 0.5rem;
  }
}






.leave-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.leave-request-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.leave-request-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #5c5c5c;
}

/* Styling for action buttons */
.leave-action-buttons button {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s;
}

.leave-btn-success {
  background-color: #28a745;
  border: none;
}

.leave-btn-danger {
  background-color: #dc3545;
  border: none;
}

.leave-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Feedback input textarea */
.leave-feedback-input {
  font-size: 0.95rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
}

/* Table styling */
.leave-responses-table {
  margin-top: 20px;
}

.leave-responses-table th {
  background-color: #f8f9fa;
}

/* Badge for response status */
.badge {
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 15px;
  color: #fff;
}

.approved-badge {
  background-color: #28a745;
}

.rejected-badge {
  background-color: #dc3545;
}

.pending-badge {
  background-color: #ffc107;
}

/* No requests/No responses styling */
.leave-no-requests,
.leave-no-responses {
  color: #999;
  font-style: italic;
  margin-top: 10px;
}





/* Container for Leave Request Responses */
/* Leave Request Responses............................................................. */
.responses-container {
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.responses-container h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

/* Table Styling */
.responses-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #fff;
}

.responses-table thead {
  background-color: #007bff;
  color: #fff;
}

.responses-table th,
.responses-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.responses-table th {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.responses-table td {
  font-size: 0.95rem;
  color: #555;
}

/* Zebra Stripes for Rows */
.responses-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.responses-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Hover Effect */
.responses-table tbody tr:hover {
  background-color: #f1f8ff;
}

/* No Responses Message */
.no-responses {
  font-size: 1.2rem;
  color: #777;
  text-align: center;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .responses-table th,
  .responses-table td {
    font-size: 0.9rem;
    padding: 10px;
  }

  .responses-container h2 {
    font-size: 1.5rem;
  }
}





/*--------------------------------------------------------------
# OSINT
--------------------------------------------------------------*/

/* Container for the search form */
.search-container {
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Form Styling */
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  gap: 1rem;
  background-color: #f7f7f7;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Input Field Styling */
.search-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #344443;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Button Styling */
.search-button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  color: white;
  background-color: #344443 !important;  /* Important for background color */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 50%;  /* Keep the button at 50% width */
}

.search-button:hover {
  background-color: #758737 !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 600px) {
  .search-form {
      flex-direction: column;
      gap: 0.5rem;
  }

  .search-button {
      width: 100%;
  }
}




/* Search Results Title */
.search-results-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Container for search results */
.search-results-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* User Profile Card */
.user-profile-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Header Section */
.user-profile-header {
  background-color: #f7f7f7;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.user-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.user-role {
  font-size: 1rem;
  color: #888;
  background-color: #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* Body Section */
.user-profile-body {
  padding: 1.5rem;
}

.user-profile-body p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.user-profile-body a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.user-profile-body a:hover {
  color: #0056b3;
}

/* Empty State for No Results */
.no-results-message {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  padding: 2rem;
}


/*--------------------------------------------------------------
# Job Apply
--------------------------------------------------------------*/
/* Background Gradient */
.container_join {
  background: linear-gradient(
        #000 30%,     
        #222 70%,     
        #1b1b1b 100%  
  );
  padding: 20px;
  
}

/* Job Post Container */
.container_job_post {
  padding: 30px;
  margin-top: -20px;
}

/* Header Styling */
h1.text-center-job {
  background-image: url('/static/assets/img/6.png'); 
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 0;
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  min-height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Job Post Cards */
.card {
  background: rgba(255, 255, 255, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  padding: 30px;
  width: 85%;
  text-align: left;
  color: white;
  margin: 20px auto;
}


/* Hover Effect */
.card:hover {
  box-shadow: 0 6px 20px rgba(241, 240, 240, 0.87);
}

/* Card Body */
.card-body {
  padding: 20px;
  color:whitesmoke;
}
.card-body p {
  text-align: left;
}
.card-body strong {
  color: #00BF63;
}

/* Card Title */
.card-title {
  font-weight: bold;
  color: orange;
  font-size: 2rem;
  text-align: center;
  display: block;
  transition: color 0.3s ease-in-out;
}

/* Button Styling */
.btn-primary {
  background-color: #218838;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background-color: #32CD32;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .card {
    width: 90%;
  }
  
  h1.text-center-job {
    font-size: 2.5rem;
    min-height: 350px;
  }
}

@media (max-width: 992px) {
  .card {
    width: 100%;
  }
  
  h1.text-center-job {
    font-size: 2rem;
    min-height: 300px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .container_job_post {
    padding: 20px;
  }
  
  h1.text-center-job {
    font-size: 1.8rem;
    min-height: 250px;
    padding: 20px;
  }
  
  .card {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  h1.text-center-job {
    font-size: 1.5rem;
    min-height: 200px;
    padding: 15px;
  }
  
  .card {
    width: 100%;
    padding: 15px;
  }
  
  .card-title {
    font-size: 1rem;
  }
}




/*--------------------------------------------------------------
# Client show details
--------------------------------------------------------------*/
/* Styling for the entire content container */
.container_client_details {
  margin-top: 20px;
  padding: 20px;
}

/* Header for the company name and Update Info button */
.container_client_details .h2-header {
  font-size: 24px;
  font-weight: bold;
  background-color: #f8f9fa;  /* Light background color */
  padding: 15px;
  border-top: 2px solid #007bff;  /* Blue border on top */
  color: #007bff;  /* Blue text */
}

/* Styling for the company name */
.container_client_details .company-name {
  font-size: 24px;
  font-weight: bold;
}

/* Styling for the Update Info button */
.container_client_details .update-btn {
  background-color: #ffc107;  /* Orange color */
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

/* Hover effect for the Update Info button */
.container_client_details .update-btn:hover {
  background-color: #e69500;  /* Darker orange on hover */
}

/* Flexbox for layout within the header */
.container_client_details th.text-center {
  border-top: 2px solid #007bff;  /* Blue border for the Update Info column */
  padding-top: 15px;  /* Add padding to separate content from the border */
  border-bottom: 2px solid #007bff;
}

/* Table Header and Cell Styling */
.container_client_details table.custom-table thead th {
  background-color: #e9ecef;
  text-align: left;
  font-weight: bold;
  padding: 10px;
  border-top: 2px solid #007bff;
}
.container_client_details table.custom-table tbody tr {
  display: table-row;
  vertical-align: middle; /* Vertically align content in the middle of the row */
}

.container_client_details table.custom-table tbody td,
.container_client_details table.custom-table tbody th {
  text-align: center; /* Horizontally center-align text */
  vertical-align: middle; /* Vertically center-align text */
  padding: 10px; /* Add padding for better spacing */
}

/* Optional: Add a border for better table readability */
.container_client_details table.custom-table tbody tr td,
.container_client_details table.custom-table tbody tr th {
  border-bottom: 1px solid #ddd;
}
.container_client_details table.custom-table td, 
.container_client_details table.custom-table th {
  padding: 12px;
}

.container_client_details .table-responsive {
  margin-top: 20px;
}

/* General table styling */
.container_client_details table.table-striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.container_client_details table.table-striped tbody tr:nth-child(even) {
  background-color: #ffffff;
}



/*--------------------------------------------------------------
# CRM Menu
--------------------------------------------------------------*/
/* Sidebar Styling with Gradient */
.crm_menu {
  width: 175px; /* Slightly increase width to avoid overflow */
  position: fixed;
  top: 150px; /* Leave 150px from the top */
  bottom: 150px; /* Leave 25px from the bottom */
  left: 0;
  background: linear-gradient(135deg, #344443, #758374); /* Gradient from dark gray to dark blue */
  color: #32CD32; /* LimeGreen color for sidebar text */
  z-index: 999; /* Ensure sidebar stays above other content */
  overflow-y: auto; /* Allow the sidebar to scroll vertically if content overflows */
  padding-top: 20px;
  transition: width 0.3s ease; /* Smooth transition for width change */
}

/* Menu List */
.crm_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crm_menu ul li {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  color: white; /* Change font color of navigation menu to white */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the start */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow text */
  text-decoration: none;
}
.crm_menu ul li a{
  text-decoration: none !important;
}

.crm_menu ul li:hover {
  background-color: #34495e; /* Dark hover effect */
}

.crm_menu ul li.active {
  background: linear-gradient(135deg, #75d678, #388e3c);
  color: black;
}

.crm_menu ul li span {
  margin-left: 10px;
  font-size: 14px;
  text-overflow: ellipsis; /* Add ellipsis for text overflow */
  color: #FAF9F6;
}
.crm_menu ul li.active span {
  color: #0c0202; /* White color for the span text in the active menu item */
}

/* Icons for Menu Items */
.crm_menu .crm-icon-dashboard::before {
  content: "\f015"; /* Dashboard icon (Font Awesome) */
  font-family: FontAwesome;
}

.crm_menu .crm-icon-clients::before {
  content: "\f0c0"; /* Clients icon (Font Awesome) */
  font-family: FontAwesome;
}

.crm_menu .crm-icon-add-client::before {
  content: "\f055"; /* Add client icon (Font Awesome) */
  font-family: FontAwesome;
}

.crm_menu .crm-icon-reports::before {
  content: "\f1c1"; /* Reports icon (Font Awesome) */
  font-family: FontAwesome;
}

.crm_menu .crm-icon-settings::before {
  content: "\f013"; /* Settings icon (Font Awesome) */
  font-family: FontAwesome;
}

.crm_menu .crm-icon-logout::before {
  content: "\f08b"; /* Logout icon (Font Awesome) */
  font-family: FontAwesome;
}

/* Mobile Menu Trigger */
@media (max-width: 768px) {
  .crm_menu {
    width: 100%; /* Full width for mobile */
    position: fixed;
    top: 0;
    left: -100%; /* Initially hidden off-screen */
    transition: left 0.3s ease;
  }

  .crm_menu.active {
    left: 0; /* Slide in when active */
  }

  .smartphone-menu-trigger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    color: #fff; /* Ensure the trigger is visible */
  }

  .crm_menu ul {
    text-align: left;
    padding: 20px;
  }

  .crm_menu ul li {
    padding: 10px 20px;
    font-size: 14px; /* Adjust font size for mobile */
  }

  .crm_menu .avatar {
    margin-bottom: 15px; /* Adjust avatar space for mobile */
  }
}

/* Adjust the main content when sidebar is open on mobile */
@media (max-width: 768px) {
  .main-content {
    margin-left: 0; /* Adjust content on smaller screens */
  }
}


/*--------------------------------------------------------------
# Onboarding Form
--------------------------------------------------------------*/

/* Global Styles */
.form-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 15px 15px 15px; /* Increased top padding */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 50px; /* Adds space between profile menu and form container */
  margin-bottom: 15px;
}

.fieldset {
  margin-bottom: 15px;
  border: none;
}

.legend {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-group > div {
  flex: 1 1 250px;
  margin-bottom: 8px;
}

/* Custom Label Styling */
.label-small {
  font-size: 12px; /* Smaller font size */
  font-weight: normal; /* Non-bold */
  margin-bottom: 4px;
  display: block;
  line-height: 1.5;
  color: #555; /* Slightly lighter text */
}

/* Styling for input, select, and textarea */
input, select, textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 6px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

textarea {
  height: 50px !important;  
  min-height: 50px !important; 
  resize: none;  
}

/* Submit Button Styling */
.submit-button {
  text-align: center;
  margin-top: 15px;
  max-width: 20%;
  margin-left: auto;
  margin-right: 0;
  display: block;
}

.submit-button button {
  background-color: #4CAF50;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.submit-button button:hover {
  background-color: #45a049;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-group > div {
    flex: 1 1 100%;
  }

  .header {
    font-size: 18px;
  }

  .submit-button button {
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .header {
    font-size: 16px;
  }

  .form-container {
    padding: 10px;
  }

  .submit-button button {
    padding: 6px 15px;
    font-size: 12px;
  }
}




/*--------------------------------------------------------------
# Messanger
--------------------------------------------------------------*/
/* General layout */
.container-fluid {
  padding: 0;
}

.chat-container {
  display: flex;
  flex-direction: row;
  width: 90%;  /* Optional, to restrict container size */
  max-width: 1200px;  /* Optional, to limit maximum width */
  height: 80vh;  /* Optional, adjust as needed */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  /* Optional for a nice shadow */
  border-radius: 10px;  /* Optional, adds rounded corners */
  background-color: #ffffff;  /* Optional background color */
}


.sidebar {
  width: 20%;
  background-color: #f4f4f4;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #ddd;
}

.chat-box {
  width: 80%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.recipient-selector {
  margin-bottom: 20px;
}

#recipient-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.messages {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.message {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.message strong {
  font-weight: bold;
}

.message p {
  margin: 5px 0;
}

#message-input {
  width: 100%;
  padding: 10px;
  height: 60px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

#send-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#send-button:hover {
  background-color: #0056b3;
}






















/* ---------------- Video Container ---------------- */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* Rounded corners */
  background-color: #000; /* Fallback background */
}

/* YouTube iframe or HTML5 video fill */
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* Fill container without distortion */
  border: 0;
}

/* ---------------- Video Overlay ---------------- */
.video-overlay {
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  color: white;
  transition: opacity 0.3s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---------------- Play Button ---------------- */
.play-circle-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px; /* Reduce previous spacing */
  transform: translateY(30px); /* Moves the entire play button 20px down */
}


.main-play-button {
  background-color: #00e676;
  border: none;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 7;
  position: relative;
  transition: transform 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.7);
}

.main-play-button i {
  color: white;
  font-size: 3.5rem;
  margin-left: 8px;
}

.main-play-button:hover {
  transform: scale(1.05);
}

/* Pulse animation */
.play-circle-pulse {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.4);
  animation: pulse 2s infinite ease-out;
  z-index: 6;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.8; }
}

/* ---------------- Overlay Text ---------------- */
.overlay-text {
  text-align: center;
  color: white;
  z-index: 7;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-text h4 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.overlay-text p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 10px;
}

/* ---------------- Bottom Controls ---------------- */
.video-bottom-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-bottom-controls,
.video-bottom-controls.visible {
  opacity: 1;
}

.control-button.bottom-control {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.control-button.bottom-control:hover {
  background: rgba(0, 0, 0, 0.9);
}

.fa-volume-mute {
  color: red;
}







/* === Our Certifications Section === */

.certification-section {
  background: linear-gradient(
        #1b1b1b  30%,     
        #222 70%,    
        #000 100%  
  );
  padding: 5px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.certification-section .container {
  max-width: 100%;
  margin: 0 auto;
}

.certification-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.certification-section p {
  color: #08e61b;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-size: 1rem;
}

.certification-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.cert-card {
  
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 20px;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.cert-card img {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

.cert-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.cert-card p {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
}



/* Responsive */
@media (max-width: 768px) {
  .certification-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .cert-card {
    width: 80%;
  }
}


