/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
: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: "Nunito",  sans-serif;
  --nav-font: "Poppins",  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: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1A3C8C ; /* 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: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #4154f1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4154f1; /* 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: #f9f9f9;
  --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: var(--background-color);
  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);
}

/* 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 4px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
/* .index-page .header {
  --background-color: rgba(255, 255, 255, 0);
} */

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 10px;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    /* padding: 10px 20px; */
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu a {
  position: relative;
  color: var(--nav-color);
  padding: 0 10px; /* keep only left & right spacing */
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: color 0.3s ease;
  height: 40px; /* set uniform height instead of padding-top/bottom */
  line-height: 30px; /* vertically center text */
}

.navmenu a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #00B7D3;
  border-radius: 2px;
  transition: width 0.3s ease;
}


/* hover + active */
.navmenu a:hover,
.navmenu a.active {
  color: #00B7D3 !important;
  
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 50%;
}


}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  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);
  padding: 30px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: lightblue;
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.incubiq-logo {
  height: 1em; /* scales with font size */
  vertical-align: middle;
  max-width: 100%;
}

@media (max-width: 768px) {
  .incubiq-logo {
    height: 1em; /* slightly smaller for mobile */
  }
}
.incubiq-logo2 {
  height: 0.8em; /* scales with font size */
  vertical-align: middle;
  max-width: 100%;
}

@media (max-width: 768px) {
  .incubiq-logo2 {
    height: 1em; /* slightly smaller for mobile */
  }
}


  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    color: #1e4387;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }

  .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(10,12,34,0.75); */
    z-index: 1;
    /* backdrop-filter: blur(4px); */
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
    padding: 0 30px;
  }

  .text-box {
    width: 100%;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
  }

  @keyframes slide-bg-grow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }

  .quote-decor {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: #333;
  padding: 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

/* Decorative quote styles */
.quote-decor::before,
.quote-decor::after {
  font-family: serif;
  font-size: 5rem;
  color: #8BC53F; /* Light green */
  opacity: 0.5;
  position: absolute;
  z-index: -1;
}

/* Opening quote */
.quote-decor::before {
  content: "“";
  top: -30px;
  left: -20px;
}

/* Closing quote */
.quote-decor::after {
  content: "”";
  bottom: -30px;
  right: -20px;
}

.quote-decor strong {
  color: #00B7D3;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .quote-decor {
    font-size: 1.1rem;
    padding: 2rem 1rem;
  }

  .quote-decor::before {
    font-size: 3.5rem;
    top: -20px;
    left: -10px;
  }

  .quote-decor::after {
    font-size: 3.5rem;
    bottom: -20px;
    right: -10px;
  }
}


  .subtitle {
    color: #012970;
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto 36px auto;
    /* text-shadow: 0 0 8px rgba(30, 67, 135, 0.2); */
    user-select: none;
    line-height: 1.4;
  }
  

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 650px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.85em 3em;
    font-size: 1.06rem;
    border-radius: 36px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 7px 35px rgba(30, 67, 135, 0.38);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
  }
#typed-text {
  font-weight: 600; /* or 700 for standard bold */
}

.sub-build {
  font-size: 1.8rem; /* smaller than h1 */
  font-weight: 600;
  margin-top: 0.5rem;
  color: #012970; /* optional - gives it a lighter tone */
}

  .btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #1e4387 0%, #4569c7 100%);
    box-shadow: 0 7px 40px #1e4387cc;
  }

  .btn-primary:hover {
    opacity: 0.95;
    box-shadow: 0 15px 50px #1e4387dd;
  }

  .btn-secondary {
    color: #1e4387;
    background: transparent;
    border: 3px solid #1e4387;
    box-shadow: 0 0 25px #1e4387bb inset;
  }

  .btn-secondary:hover {
    background: #1e4387;
    color: #fff;
    box-shadow: 0 15px 55px #1e4387cc;
  }

  /* Responsive */

  @media (max-width: 768px) {
    #typed-text,
    #typed-text::before {
      font-size: 1.8rem;
    }

    .subtitle {
      font-size: 1.05rem;
      max-width: 90%;
    }

    .btn-primary,
    .btn-secondary {
      min-width: 140px;
      font-size: 0.95rem;
      padding: 0.7em 2em;
    }

    .hero-buttons {
      gap: 16px;
    }
  }

  @media (max-width: 480px) {
    #typed-text,
    #typed-text::before {
      font-size: 1.4rem;
    }

    .subtitle {
      font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
      min-width: 120px;
      font-size: 0.9rem;
      padding: 0.6em 1.5em;
    }
  }
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about.section {
  padding: 40px 0;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
}

.about .content {
  padding: 60px;
}

.about .content h3 {
  font-size: 20px;
  text-transform: uppercase;
  color: #0077cc;
  font-weight: bold;
  margin-bottom: 12px;
}

.about .content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  line-height: 1.5;
}

.about .highlight-box {
  background: #fff;
  border-left: 4px solid #1A3C8C ;
  padding: 15px 20px;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.about .highlight-box h4 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 600;
  color: #333;
}

.about .highlight-box p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.about .btn-read-more {
  background: #0077cc;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.about .btn-read-more:hover {
  background: #005fa3;
}

.about img.img-fluid {
  width: 100%;
  border-radius: 0; /* no change */
  box-shadow: none; /* no change */
}

@media (max-width: 991px) {
  .about .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about .content {
    padding: 20px;
  }
}
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 20px;
  transition: 0.3s;
  font-weight: 800;
    text-shadow: 0 0 1px #8BC53F;
  color: #8BC53F ;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 20px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 15px 1px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

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

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* ????? Vission and Mission */

.vision-mission-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.vision-column, .mission-column {
  flex: 1;
  padding: 15px;
  background-color: #012970;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(121, 221, 118, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-column:hover, .mission-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vision-description {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.vision-description strong {
  background-color: white;
  color: #012970;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .vision-mission-columns {
    flex-direction: column;
    gap: 20px;
  }

  .vision-column, .mission-column {
    flex: none;
    width: 100%;
  }
}

.implementation-block {
  margin: 60px 0;
}

.implementation-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto;
}

.implementation-list li {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(121, 221, 118, 0.7);
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.implementation-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.metrics-block {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.metric-item {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(121, 221, 118, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.metric-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.metric-item h3 {
  font-size: 36px;
  font-weight: bold;
  color: #00B7D3;
  margin-bottom: 10px;
}

.metric-item p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.metrics-cta {
  margin-bottom: 60px;
}

.btn-metrics {
  background: var(--accent-color);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-metrics:hover {
  background: #292f6d;
  color: #fff;
}

.newsletter-block {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

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

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 12px 20px;
  background: #4154f1;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #2e3ec9;
}

@media (max-width: 768px) {
  .metrics-block {
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input, .newsletter-form button {
    width: 100%;
  }
}
/* ????? End Vission and Mission*/
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* .hero-bg {
    background-image: url('backend/img/bg-1.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    animation: zoomEffect 5s ease-in-out infinite alternate;
} */

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
   background: linear-gradient(to bottom right, rgba(251, 252, 253, 0.4), rgb(255 255 255 / 80%));
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
    width: 100%;
}
.hero-content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
    width: 100%;
}

.hero-textt {
    max-width: 850px;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-textt h1 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    min-height: 80px;
    margin-bottom: 20px;
}

.hero-textt span {
    color: #012970;
    font-size: 36px;
    font-weight: 600;
}

.hero-textt p {
    font-size: 18px;
    margin: 20px 0 30px;
    color: #012970;
}

.btn-primary {
    background: #fff;
    color: #4154f1;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #1a3ef1;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hero-shape {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-textt h1 {
        font-size: 28px;
    }

    .hero-textt span {
        font-size: 24px;
    }

    .hero-textt p {
        font-size: 16px;
    }

    .hero-textt {
        padding: 30px 20px;
    }

    .btn-primary {
        width: 100%;
    }
}

    /* About Section */
    .incubation-section {
        position: relative;
        padding: 10px 50px;
        /* background: linear-gradient(to right,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(25, 89, 163, 0.9) 100%); */


        color: white;
    }


    /* Flex container for content */
    .incubation-inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 60px;
        z-index: 1;

    }

    /* Left panel aligned to bottom */
    .intro-panel {
        flex: 1;
        max-width: 480px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* push content to bottom */
    }

    /* Right panel aligned to top */
    .features-panel {
        flex: 1.2;
        display: grid;
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 30px;
        align-self: flex-start;
        /* align at top of container */
    }

    /* Feature cards */
    .feature-item {
        background: #fff;
        border-left: 4px solid #00B7D3;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-6px);
    }

    .feature-item i {
        font-size: 1.5rem;
        color: #00B7D3;
        margin-bottom: 14px;
        display: block;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }

    /* Text and button styling */
    .intro-heading {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #222;
    }

    .intro-heading .brand {
        color: #012970;
    }

    .intro-text {
        font-size: 1.15rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 15px;
    }

    .cta-button {
        background-color: #012970;
        color: #fff;
        border: 2px solid #8BC53F;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        align-self: flex-start;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .cta-button:hover {
        background-color: #012970;
        color: white;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .incubation-inner {
            flex-direction: column;
        }

        .intro-panel {
            max-width: 100%;
            margin-bottom: 50px;
            justify-content: flex-start;
            /* stack top on mobile */
        }

        .features-panel {
            grid-template-columns: 1fr;
            align-self: stretch;
        }

        .cta-button {
            align-self: center;
        }
    }

    /* Programs Section */


    /* Tech Section */
   .tech-section {
    background: linear-gradient(to right, #f9f9f9, #eef2f7);
    position: relative;
    overflow: hidden;
}

.tech-section .tech-content ul li {
    font-size: 1.1rem;
}

.tech-section .btn-primary {
    background: #4154f1;
    color: white;
    font-size: 16px;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: background 0.3s ease;
}

.tech-section .btn-primary:hover {
    background: #3a4ad3;
}


    /* Mentors */
    .mentors-section {
        padding: 80px 20px;
    }

    .mentors-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .mentor-image img {
        max-width: 350px;
    }

    /* Final CTA */
    .final-cta {
        background: #313a8a;
        color: #fff;
        padding: 50px 20px;
        text-align: center;
    }

    .final-cta .btn-primary {
        background: #fff;
        color: #313a8a;
    }

    @media (max-width: 768px) {

        .hero-content,.hero-content1,
        .tech-flex,
        .mentors-flex {
            flex-direction: column;
            text-align: center;
        }

        .hero-image img,
        .tech-image img,
        .mentor-image img {
            margin-top: 30px;
        }
    }


    /* Hero */
.startups-hero {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, #68abca 100%), url(../img/IMG_6566.JPG);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
  background-position: center;
}

.startups-hero h1 {
    font-size: 42px;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.2;
    color: #012970; /* Darker for better readability */
    font-weight: bold;
}

.startups-hero h1 span {
    color: #007bff; /* Highlight word to tie theme */
}

.startups-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: black; /* Darker for contrast */
}

.btn-primary {
    background: #4154f1;       /* Matches your theme color */
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(65, 84, 241, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #012970;  
    color: white;
    border: 2px solid white;
    /* Slightly darker shade for hover */
    box-shadow: 0 6px 16px rgba(45, 62, 201, 0.4);
    transform: translateY(-2px);
}
.btn-secondary:hover {
    background: #012970;  
    color: white;
    /* Slightly darker shade for hover */
    box-shadow: 0 6px 16px rgba(45, 62, 201, 0.4);
    transform: translateY(-2px);
}


.hero-bg-shape {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* Optional subtle floating shapes */
.startups-hero::before,
.startups-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}
.startups-hero::before {
    width: 120px; height: 120px;
    top: 40px; left: 10%;
}
.startups-hero::after {
    width: 80px; height: 80px;
    bottom: 60px; right: 15%;
}

.btn-primary {
  background: #fff;
  color: #4154f1;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}
.hero-bg-shape {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #fff;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* Startup Grid */
.startup-grid-section {
  padding: 40px 20px;
  background: #f9faff;
  text-align: center;
}
.startup-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.startup-card {
  background: #fff;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.startup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.startup-card img {
  width: 200px;
  margin-bottom: 15px;
}
.startup-card h3 {
  color: #4154f1;
  font-size: 20px;
  margin-bottom: 10px;
}
.startup-card p {
  font-size: 15px;
  margin-bottom: 10px;
}
.industry-tag {
  background: #e8eaff;
  color: #4154f1;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}
.achievement {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Case Studies */
.case-studies-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.case-study-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.case-card {
  background: #f9faff;
  padding: 30px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
}
.case-card h3 {
  font-size: 20px;
  color: #4154f1;
  margin-bottom: 12px;
}
.case-card p {
  font-size: 15px;
  color: #555;
}



@media (max-width: 768px) {
  .startup-grid, .case-study-slider {
    flex-direction: column;
    align-items: center;
  }
  .startup-card, .case-card {
    width: 100%;
    max-width: 400px;
  }
}

  /* HERO */
   .kss-hero-advanced {
    position: relative;
    padding: 65px 20px 18px;
    overflow: hidden;
    background: #f9faff;
}

.kss-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4154f1 0%, #6f93c4 50%, #ffffff 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1;
}

.hero-content1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    max-width: 500px;
    color: #fff;
}

.hero-text .tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    margin-bottom: 16px;
}

.hero-text h3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #2e2c2c;
}

.hero-visual img {
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
}

/* BUTTONS */
.btn-primary {
    background: #012970;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background: #1e4387;
    color: #fff;
    border: 2px solid #8DC63F;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid #4154f1;
    color: #4154f1;
    padding: 10px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}

/* MEDIA QUERIES for responsiveness */

@media (max-width: 1024px) {
    .hero-content1 {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-text h3 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-visual img {
        max-width: 100%;
        margin-top: 20px;
        transform: translateY(0);
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
   .kss-hero-advanced {
    padding: 65px 10px 10px; /* top: 65px, sides: 10px, bottom: 30px */
  }

    .hero-text h3 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-visual img {
        max-width: 100%;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
   .kss-hero-advanced {
    padding: 65px 10px 10px; /* top: 65px, sides: 10px, bottom: 30px */
  }

    .hero-text h3 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-visual img {
        max-width: 90%;
        margin-top: 20px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

    .section-intro {
        max-width: 650px;
        margin: 0 auto 40px;
        color: #555;
    }

    .services-grid {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-card {
    background: #fff;
    padding: 30px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;

    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 centers the image and heading */
    text-align: center;  /* 🔥 centers the text like h3 and p */
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .service-card img {
    width: 150px;
    margin-bottom: 15px;
    display: block;
}

    .service-card h3 {
        color: #4154f1;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 15px;
        color: #555;
    }

    /* WHY SECTION */
    .kss-why {
        padding: 40px 20px;
        background: #fff;
    }

    .why-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .why-text {
        flex: 1;
        max-width: 500px;
    }

    .why-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .why-text ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .why-text li {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .why-buttons a {
        display: inline-block;
        margin-top: 10px;
    }

    /* SUCCESS SECTION */
    .kss-success {
        background: #f9faff;
        padding: 40px 20px;
        text-align: center;
    }

    .success-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .success-card {
        background: #fff;
        padding: 30px;
        width: 280px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .success-card:hover {
        transform: translateY(-6px);
    }

    .success-card h3 {
        font-size: 20px;
        color: #4154f1;
        margin-bottom: 10px;
    }

    .success-card p {
        font-size: 15px;
        color: #555;
    }

    

    /* RESPONSIVE */
    @media (max-width: 768px) {

        .hero-content,.hero-content1,
        .why-wrapper {
            flex-direction: column;
            text-align: center;
        }

        .hero-visual img {
            margin-top: 30px;
        }

        .service-card,
        .success-card {
            width: 100%;
            max-width: 400px;
        }
    }

    .why-image {
    flex: 1;
    text-align: center;
}

.why-image img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .why-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .why-image img {
        max-width: 100%;
    }
}

/* HERO */
.campus-hero {
    position: relative;
    background: #f9faff;
    padding: 120px 20px;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1;
    max-width: 500px;
}
.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: #012970;
}
.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}
.hero-image {
    flex: 1;
    text-align: right;
}
.hero-image img {
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.hero-decor {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #26396e;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

/* BUTTON */
.btn-primary {
    background: #012970;
    color: white;
    padding: 14px 32px;
    border: 2px solid #8DC63F ;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #062252;
    color: white;
    transform: translateY(-2px);
}

/* AIM */
.campus-aim {
    padding: 20px 20px;
    background: #fff;
    text-align: center;
}
.campus-aim h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.campus-aim .intro {
    /*max-width: 650px;*/
    margin: 0 auto 30px;
    color: #555;
}
.highlight-box {
  background: #f1f4ff;
  border-left: 5px solid #012970;
  padding: 60px 30px;
  max-width: 600px;
  margin: 60px auto;
  font-style: italic;
  color: #333;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.6;
  overflow: hidden;
}

/* Common quote styles */
.quote-mark {
  position: absolute;
  font-size: 7rem;
  color: lightgreen;
  font-family: Georgia, serif;
  font-style: normal;
  line-height: 1;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

/* Opening quote – top-left */
.open-quote {
  top: 10px;
  left: 15px;
}

/* Closing quote – bottom-right */
.close-quote {
    bottom: -22px;
    right: 45px;
}

/* Paragraph text stays above the quotes */
.highlight-box p {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
  .highlight-box {
    padding: 50px 20px;
    font-size: 1rem;
  }

  .quote-mark {
    font-size: 5rem;
  }

  .open-quote {
    top: 5px;
    left: 10px;
  }

  .close-quote {
    bottom: -30px;
    right: 10px;
  }
}



/* WHY COLLABORATE */
.campus-why {
    padding: 30px 20px;
    background: #f9faff;
    text-align: center;
}
.why-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.why-card {
    background: #fff;
    padding: 30px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.why-card:hover {
    transform: translateY(-6px);
}
.why-card h3 {
    color: #012970;
    font-size: 20px;
    margin-bottom: 10px;
}

/* PROCESS */
.campus-process {
    background: #fff;
    padding: 20px 20px;
    text-align: center;
}
.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}
.step {
    width: 200px;
    text-align: center;
}
.step-number {
    display: inline-block;
    background: #012970;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px #00000026;
}
.step p {
    font-size: 15px;
    color: #555;
}

/* FINAL CTA */
.campus-cta {
    background: #4154f1;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.campus-cta h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        max-width: 90%;
        height: auto;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .campus-hero {
        padding: 80px 15px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hero-decor {
        height: 100px;
        bottom: -40px;
    }
}




/* Force icon, name, and caret into a single row */
.user-group {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: inherit;
}

/* Remove spacing bubbles from individual icons */
.user-group i,
.user-group span {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* Icon styles */
.user-group i {
    font-size: 18px;
    line-height: 1;
}

/* Username text */
.user-name {
    font-weight: 500;
    white-space: nowrap;
}

/* Caret icon */
.dropdown-caret {
    font-size: 12px;
    margin-top: 1px;
}

/* Button cleanup */
.logout-btn {
    background: none;
    border: none;
    padding: 10px 12px;
    width: 100%;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
}

/* Mobile fix */
@media (max-width: 768px) {
    .user-group {
        width: 100%;
        justify-content: flex-start;
    }
}

 .join-movement-section {
    background-color: #1a3c8c;
    padding: 35px 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 40px;
    font-family: 'Segoe UI', sans-serif;
        border: 2px solid #8BC53F;
}

    .join-heading {
        font-size: 34px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .join-buttons-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .join-btn {
        padding: 5px 15px;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        border: 2px solid #fff;
        border-radius: 40px;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .join-btn::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: #313a8a;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        border-radius: 40px;
    }

    .join-btn:hover::before {
        transform: scaleX(1);
    }

    .join-btn:hover {
        color: #fff;
    }

    @media (max-width: 768px) {
        .join-heading {
            font-size: 36px;
        }

        .join-btn {
            font-size: 18px;
            padding: 15px 30px;
        }
    }

    @media (max-width: 480px) {
        .join-buttons-wrapper {
            flex-direction: column;
            gap: 20px;
        }
    }



    .incubiqgo-hero {
    position: relative;
    background: url('../img/demo.jpg') center/cover no-repeat;
    color: white;
    padding: 160px 0;
    overflow: hidden;
}

.incubiqgo-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.incubiqgo-hero-structure {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
}

.incubiqgo-hero-textbox {
    flex: 1;
    max-width: 550px;
}

.incubiqgo-hero-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.incubiqgo-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #e4e4e4;
    margin-bottom: 30px;
}

.incubiqgo-hero-btn {
    background-color: #ffffff;
    color: #1a3e72;
    padding: 14px 36px;
    border-radius: 30px;
    border: 2px solid #8BC53F;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.incubiqgo-hero-btn:hover {
    background-color: #f3f3f3;
}

.incubiqgo-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.incubiqgo-glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    max-width: 400px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.incubiqgo-card-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #8BC53F;
    margin-bottom: 10px;
}

.incubiqgo-glass-card h3 {
    font-size: 22px;
    margin: 10px 0;
    color: white;
}

.incubiqgo-glass-card p {
    font-size: 15px;
    line-height: 1.5;
}

.incubiqgo-expert-board {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.incubiqgo-board-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.incubiqgo-board-subtitle {
  color: #444;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.incubiqgo-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.incubiqgo-member-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(13, 71, 161, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  background-image: linear-gradient(135deg, #001f3f 0%, #003c8f 100%);
}

.incubiqgo-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(13, 71, 161, 0.4);
}

.incubiqgo-member-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff22, #8bc53f55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.incubiqgo-member-content {
  text-align: center;
}

.incubiqgo-member-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.incubiqgo-member-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: #b0d5ff;
  margin-bottom: 15px;
}

.incubiqgo-member-description {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .incubiqgo-board-title {
    font-size: 2.25rem;
  }

  .incubiqgo-member-card {
    padding: 24px;
  }
}

 .leadership-img-wrapper {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  .leadership-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  @media (max-width: 576px) {
    .leadership-img-wrapper {
      width: 200px;
      height: 200px;
    }
  }

  .org-team-section {
    background: #f9f9f9;
}

.org-team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.org-team-section h3 {
    font-size: 1.8rem;
    border-left: 5px solid #012970;
    padding-left: 15px;
    margin-bottom: 25px;
}

.org-team-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 18px;
}

.org-team-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.org-team-section .card img {
    border: 3px solid #ddd;
    padding: 4px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.org-team-section .fw-semibold {
    font-weight: 600;
    font-size: 1.15rem;
    color: #222;
}

.org-team-section p.small {
    font-size: 0.92rem;
    line-height: 1.4;
    color: #666;
}

@media (max-width: 576px) {
    .org-team-section h2 {
        font-size: 2rem;
    }
    .org-team-section h3 {
        font-size: 1.4rem;
    }
    .org-team-section .card {
        padding: 1rem;
    }
}

.campus-connect-section {
    background: #f9f9ff;
}

.section-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.section-header .section-subtitle {
    font-size: 1rem;
    color: #666;
}

.campus-card {
    background-color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.campus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.campus-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.campus-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d2d2d;
}

.campus-role {
    font-size: 0.95rem;
    font-weight: 500;
    color: #888;
}

.campus-desc {
    font-size: 0.9rem;
    color: #555;
    padding: 0 10px;
}


.compliance-section {
    background-color: #eef5fa;
}

.compliance-section .section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c3e50;
}

.compliance-section .section-subtitle {
    font-size: 1rem;
    color: #666;
}

.compliance-icon i {
    width: 50px;
    height: 50px;
    display: inline-block;
}

.compliance-item h5 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d2d2d;
}

.compliance-item p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.campus-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.compliance-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.compliance-img-wrapper {
    width: 100%;
    aspect-ratio: 1.1 / 1; /* makes it responsive and consistent */
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain; /* show full image */
    padding: 10px;
}

@media (max-width: 576px) {
    .compliance-img-wrapper {
        aspect-ratio: 1 / 1;
    }
}
.mentor-network-section {
    background: #f9f9f9;
    border-top: 5px solid #e0e0e0;
    border-radius: 0 0 20px 20px;
}

.section-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
}

.section-subtext {
    max-width: 700px;
    margin: auto;
    color: #555;
}

.mentor-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mentor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
}

.mentor-info {
    padding: 15px;
}

.apply-btn {
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.mentor-modal {
    border-radius: 15px;
}

.mentor-modal .modal-header {
    background: #f0f0f0;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.mentor-modal .modal-body {
    padding: 25px;
}

.mentor-modal .modal-footer {
    border-top: none;
    padding: 15px 25px;
}

.founder-img, .student-img {
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    transition: transform 0.3s ease;
}
.founder-card:hover .founder-img,
.student-card:hover .student-img {
    transform: scale(1.05);
}
.card-body p {
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .founder-img, .student-img {
        height: 220px;
    }
}
.focus-industries {
    background-color: #f9f9ff;
    margin: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c6c;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.industry-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
}

.industry-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.industry-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a3d;
}

.industry-description {
    font-size: 0.95rem;
    color: #555;
}

.apply-process-section {
    background-color: #fffdfb;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #3b3b3b;
}

.section-subtext {
    font-size: 1.1rem;
    color: #6a6a6a;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #f0e6e6;
    margin-top: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 0;
    background-color: #012970;
    border: 1px solid #8BC53F;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content {
    padding-left: 20px;
}

.timeline-content h5 {
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline {
        padding-left: 25px;
    }

    .timeline-icon {
        left: -20px;
        width: 35px;
        height: 35px;
        font-size: 16px;
        line-height: 35px;
    }

    .timeline-content h5 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }
}

.mentors-section {
    background-color: #f9fbfe;
    color: #003366;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #012970;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5c728a;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #004080;
    margin-bottom: 15px;
    border-left: 5px solid #012970;
    padding-left: 15px;
}

.mentor-card {
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 25px 15px;
    transition: all 0.3s ease;
    border: 1px solid #e1e8f0;
}

.mentor-card:hover {
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.1);
    transform: translateY(-5px);
}

.mentor-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #012970;
}

.mentor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 5px;
}

.mentor-role {
    font-size: 0.95rem;
    color: #5c728a;
}



/* ////Focus Industries///// */

  .focus-industries {
  background: #f8f9fc;
  color: #333;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #012970;
}

.section-subtitle3 {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
}

.industry-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
}

.industry-card .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #00B7D3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.4s ease;
}

.industry-card h4 {
  color: #012970;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 0.95rem;
  color: #555;
}

.industry-card:hover {
  background: linear-gradient(135deg, #012970, #00B7D3);
  color: #fff;
  transform: translateY(-6px);
}

.industry-card:hover .icon-wrapper {
  background: #8BC53F;
  color: white;
}

.industry-card:hover h4,
.industry-card:hover p {
  color: #fff;
}

.cta-text {
  font-size: 1.1rem;
  color: #333;
}

.cta-text .highlight {
  color: #7AC943;
  font-weight: 600;
}

.apply-btn {
  background: #012970;
  color: #fff;
  border: 2px solid #8BC53F;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(122,201,67,0.4);
}

.apply-btn:hover {
  background: #012970;
  color: white;
  transform: translateY(-3px);
}

        .partners-logo-section {
   padding-top: 5px;
   padding-bottom: 30px;
    text-align: center;
    background-color: #f8f8f8;
}

.partners-title {
    font-size: 2rem;
    color: #012970;
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-logo {
    max-width: 250px;
    width: 100%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: auto;
    transition: transform 0.3s ease;
}

.partners-logo:hover {
    transform: scale(1.1);
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
    .partners-title {
        font-size: 2rem;
    }

    .partners-logo {
        max-width: 120px;
    }

    .partners-logo-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1.8rem;
    }

    .partners-logo {
        max-width: 200px;
    }

    .partners-logo-container {
        flex-direction: column;
        gap: 15px;
    }
}

.apply-section {
  background: #ffffff;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #444;
}

.apply-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.apply-title {
  font-size: 28px;
  color: #012970;
  margin-bottom: 40px;
  border-left: 6px solid #00B7D3;
  padding-left: 12px;
}

/* Step container - 5 steps in one row */
.apply-steps-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* Step item */
.apply-step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  min-width: 200px;
  max-width: 240px;
  flex: 0 0 auto;
  text-align: center;
  border: 1px solid #00B7D3;
  /* box-shadow: 0 2px 10px rgba(9, 248, 69, 0.5); */
  transition: transform 0.3s ease;
}

.apply-step:hover {
  transform: translateY(-5px);
}

.step-badge {
  width: 40px;
  height: 40px;
  background: #012970;
  color: white;
  font-weight: bold;
  border: 2px solid #8BC53F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 16px;
}

.step-content h3 {
  font-size: 16px;
  color: #012970;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  color: #555;
}

/* Scrollbar styles (optional) */
.apply-steps-wrapper::-webkit-scrollbar {
  height: 8px;
}
.apply-steps-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.apply-steps-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

/* Mobile stack (optional fallback) */
@media (max-width: 600px) {
  .apply-step {
    min-width: 100%;
    text-align: left;
  }

  .step-badge {
    margin: 0 0 10px 0;
  }
}

.apply-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.apply-button {
  display: inline-block;
  background-color: #012970;
  color: white;
  border: 2px solid #8BC53F;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.apply-button:hover {
  background-color: #02174f;
  color: white;
}

.facilities-section {
    background: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #444;
    display: flex;
    justify-content: center;
  }
  .facilities-container {
    /* max-width: 900px; */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
  .facilities-title {
    font-size: 34px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 6px solid #00B7D3;
    padding-left: 14px;
    display: inline-block;
    text-align: left;
  }
  .facilities-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
  }
  .facility-card {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow:
      0 8px 20px rgba(1, 41, 112, 0.1),
      0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    text-align: left;
  }
  .facility-card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 20px 40px rgba(1, 41, 112, 0.25),
      0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .facility-icon {
    font-size: 48px;
    color: #00B7D3;
    margin-bottom: 18px;
    user-select: none;
    line-height: 1;
  }
  .facility-card h3 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .facility-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
  }
  @media (max-width: 600px) {
    .facilities-title {
      font-size: 28px;
      padding-left: 10px;
    }
    .facilities-intro {
      font-size: 16px;
      max-width: 100%;
      margin-bottom: 30px;
    }
    .facility-card {
      padding: 25px 20px;
    }
  }

  .policies-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #444;
  display: flex;
  justify-content: center;
}

.policies-wrapper {
  max-width: 900px;
  width: 100%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.policies-sidebar {
  flex: 1 1 220px;
  border-left: 6px solid #8BC53F;
    background-color: #012970;

  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
}

.section-number {
  font-size: 64px;
  font-weight: 900;
  color: #012970;
  line-height: 1;
  margin-bottom: 10px;
  user-select: none;
}

.section-title1 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 15px;
}

.section-subtitle {
  font-size: 16px;
  color: white;
  line-height: 1.4;
}

.policies-content {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 25px;
}

.policy-card {
  background: linear-gradient(135deg, #f5f8ff, #e6ecff);
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow:
    0 10px 20px rgba(1, 41, 112, 0.1),
    0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 40px rgba(1, 41, 112, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.policy-icon {
  font-size: 36px;
  color: #00B7D3;
  flex-shrink: 0;
  margin-top: 4px;
}

.policy-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #012970;
  font-weight: 700;
}

.policy-text p {
  margin: 0;
  font-size: 14.5px;
  color: #444;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 720px) {
  .policies-wrapper {
    flex-direction: column;
  }
  .policies-sidebar {
    border-left: none;
    /* border-top: 6px solid #012970; */
    background-color: #012970;
    padding-left: 0;
    padding-top: 20px;
    margin-bottom: 40px;
    min-width: auto;
    text-align: center;
  }
  .section-number {
    font-size: 48px;
  }
  .policies-content {
    grid-template-columns: 1fr;
  }
  .policy-card {
    padding: 20px 15px;
  }
}

.vision-mission-section {
  background: #f9faff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Wrapper for Vision & Mission section */
.vm-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  padding-bottom: 40px ;
}

/* Container that holds both cards */
.vm-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

/* Each card */
.vm-card {
  background: #ffffff;
  width: 300px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 70px 20px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 400px;
  margin: 0 auto; /* Centering cards on small screens */
}

/* Hover effects */
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  background: #012970;
  color: #fff;
}

.vm-tab {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #012970;
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  width: 400px;
  height: 60px;
  border-radius: 0 0 150px 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 2;
}

/* Hover tab color change */
.vm-card:hover .vm-tab {
  background: #ffffff;
  color: #012970;
}

/* Paragraph inside cards */
.vm-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: #333;
  transition: color 0.3s ease;
}

.vm-card:hover p {
  color: #fff;
}

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

  .vm-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .vm-tab {
    font-size: 20px;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .vm-tab {
    font-size: 18px;
    height: 50px;
    padding-bottom: 8px;
  }

  .vm-card {
    padding: 60px 15px 25px;
  }

  .vm-card p {
    font-size: 14px;
  }
}


    /* Initial state - hidden and scaled down */
.scroll-popup {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When in view - visible and full size */
.scroll-popup.visible {
  opacity: 1;
  transform: scale(1);
}


.rftx-trade-btn {
			padding: 14px 34px;
			font-size: 1.1rem;
			background: #007bff;
      border: 2px solid #8BC53F;
			color: white;
			border: none;
			border-radius: 15px;
			text-decoration: none;
			font-weight: 600;
			position: relative;
			overflow: hidden;
			z-index: 1;
			transition: color 0.3s ease;
			animation: rftx-btn-zoomIn 1.2s ease-out 6.5s forwards;
			/* opacity: 0; */
		}

		.rftx-trade-btn::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: white;
			opacity: 0.15;
			transform: skewX(45deg);
			transition: left 0.5s ease;
			z-index: -1;
		}

		.rftx-trade-btn:hover::before {
			left: 100%;
		}

		.rftx-trade-btn:hover {
			color: #fff;
			background-color: #0056b3;
		}

	
		/* Responsive */
		@media (max-width: 768px) {
			.rftx-trade-btn {
				padding: 12px 28px;
				font-size: 1rem;
			}
		}

 

    	.rftx-text-block {
			position: relative;
			width: 100%;
			max-width: 1200px;
			height: 135px !important;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
		}

		.rftx-text-block+.rftx-text-block {
			margin-top: 20px;
		}

		.rftx-slide-box {
			position: absolute;
			top: 0;
			left: 10px;
			width: calc(100% - 10px);
			height: 100%;
			background-color: #007bff;
			border-radius: 8px;
			animation: rftx-slide-left 2.5s ease forwards;
			z-index: 2;
		}

		@keyframes rftx-slide-left {
			0% {
				transform: translateX(-100%);
			}

			50% {
				transform: translateX(0%);
			}

			100% {
				transform: translateX(100%);
			}
		}

		.rftx-slide-box.sub {
			left: auto;
			right: 5px;
			animation: rftx-slide-right 2.5s ease forwards;
			animation-delay: 2.6s;
		}

    .section-heading h2.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 12px;
}

.section-heading .about-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.about-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid #8BC53F;
  transition: all 0.3s ease;
  height: 100%;
}
.about-card2 {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid #012970;
  transition: all 0.3s ease;
  height: 100%;
}

.about-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 10px;
  color: #333;
}

.about-card p {
  font-size: 15px;
  color: #555;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}
.about-card2 h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 10px;
  color: #333;
}

.about-card2 p {
  font-size: 15px;
  color: #555;
}

.about-card2:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
}

/* Icon Circle */
.about-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #8BC53F;
  background: #012970;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-card:hover .about-icon {
  background: white;
  border: 2px solid #012970;
  color: #012970;
  transform: scale(1.1);
}
.about-card2:hover .about-icon {
  background: white;
  border: 2px solid #012970;
  color: #012970;
  transform: scale(1.1);
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #012970;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #8BC53F;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(139, 197, 63, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background: #012970;
  color: #fff;
  box-shadow: 0px 6px 12px rgba(139, 197, 63, 0.5);
  transform: translateY(-3px);
}

.incubiq-entrepreneurship-section {
  background: #73a6be14; /* light grey background */
  padding: 80px 20px;
}

.incubiq-entrepreneurship-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #012970;
}

.incubiq-entrepreneurship-box {
  background: #fff;
  padding: 30px;
  max-width: 750px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.incubiq-entrepreneurship-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
}

.incubiq-entrepreneurship-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.incubiq-entrepreneurship-highlight {
  font-weight: 600;
  color: #00B7D3; /* single brand accent */
}

.incubiq-entrepreneurship-btn {
  display: inline-block;
  margin-top: 20px;
  background: white; /* same brand accent */
  color: #012970;
  border: 2px solid #8BC53F;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.incubiq-entrepreneurship-btn:hover {
  background: #012970;
  color: white;
}


/* Container */
.offerings-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.offerings-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #012970;
  margin-bottom: 40px;
}

/* Grid Layout */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards */
.offering-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.offering-card:hover {
  background: #012970;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* Icon */
.offering-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #00B7D3;
  transition: color 0.3s ease;
}

.offering-card:hover .offering-icon {
  color: #7AC943;
}

/* Title */
.offering-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #012970;
  transition: color 0.3s ease;
}

.offering-card:hover h3 {
  color: #fff;
}

/* Description */
.offering-card p {
  font-size: 0.95rem;
  color: #444;
  transition: color 0.3s ease;
}

.offering-card:hover p {
  color: #eee;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .offerings-section h2 {
    font-size: 1.6rem;
  }
  .offering-card {
    padding: 20px;
  }
}

.campus-connect {
  background: #73a6be14;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.campus-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #012970;
  margin-bottom: 50px;
}

.campus-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.campus-step {
  display: flex;
  align-items: flex-start;
  background: #f8f9fc;
  border-left: 5px solid #00B7D3;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.campus-step:hover {
  background: #012970;
  color: #fff;
  border-left-color: #7AC943;
}

.step-number1 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #00B7D3;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: 0.3s;
}

.campus-step:hover .step-number1 {
  background: #7AC943;
}

.step-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #012970;
  transition: 0.3s;
}

.campus-step:hover .step-content h3 {
  color: #fff;
}

.step-content p {
  margin: 5px 0 0;
  color: #444;
  font-size: 0.95rem;
}

.campus-step:hover .step-content p {
  color: #eee;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .campus-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number1 {
    margin-bottom: 10px;
  }
}


.campus-connect-tech {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  margin: 40px 0;
  /* font-family: 'Arial', sans-serif; */
}

.tech-title {
  font-size: 28px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 15px;
}

.tech-quote {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  /*border-left: 4px solid #00B7D3;*/
  padding-left: 15px;
  margin-bottom: 25px;
}

.highlight {
  color: #00B7D3;
  font-weight: 600;
}

/* ========== INTEGRATION STYLES ========== */

.integration-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.integration-list {
  list-style: none;
  padding: 0;
}

.integration-list li {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fc;
  border-left: 5px solid #012970;
  border-radius: 6px;
  transition: 0.3s;
}

.integration-list li:hover {
  background: #012970;
  color: #fff;
}

.integration-point {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #012970;
}

.integration-list li:hover .integration-point {
  color: #fff;
}

/* ========== ✅ JUST THIS SECTION IS NEW ========== */

/* Make .integration-wrapper feel like part of the quote section visually */
.tech-intro .integration-wrapper {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0; /* subtle divider */
}

/* Optional: Adjust spacing if needed */
.tech-intro .integration-title {
  margin-top: 10px;
}


/* General styling for quotes */
.quote {
  font-size: 4rem; /* Large size for quotes */
  color: lightgreen; /* Light green color */
  vertical-align: middle; /* Aligns the quotes in the middle of the text */
}

/* Responsive design */
@media (max-width: 768px) {
  .quote {
    font-size: 3rem; /* Slightly smaller on mobile */
  }
}

@media (min-width: 769px) {
  .quote {
    font-size: 5rem; /* Larger on desktop */
  }
}

/* Fixing line height */
.implementation-list li {
  line-height: 1.5; /* Adjusts the spacing between lines */
  display: flex; /* Flexbox helps with better alignment */
  align-items: center; /* Ensures the text and quotes are vertically aligned */
}

.intro-heading .logo-incubation {
    height: 30px; /* Default height for larger screens */
    vertical-align: middle; /* Aligns the logo vertically with the text */
    margin-left: 5px; /* Adds a little space between the text and logo */
    max-width: 100%; /* Ensures the image doesn't stretch beyond its container */
}

/* For medium-sized screens (e.g., tablets) */
@media (max-width: 1024px) {
    .intro-heading .logo-incubation {
        height: 25px; /* Adjust logo size for medium screens */
    }
}

/* For small screens (e.g., mobile devices) */
@media (max-width: 768px) {
    .intro-heading .logo-incubation {
        height: 40px; /* Further reduce logo size on smaller screens */
    }
}

/* For very small screens (e.g., mobile phones in portrait mode) */
@media (max-width: 480px) {
    .intro-heading .logo-incubation {
        height: 40px; /* Adjust logo size even more on smaller screens */
    }
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.incubiq-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .incubiq-hero-section {
    margin-top:15px;
    height: auto; /* Let content define height */
    min-height: 60vh; /* Optional: provide a base height */
    padding: 40px 20px; /* Optional: add spacing for small screens */
  }
}


.incubiq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/background.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.incubiq-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
}

.incubiq-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.incubiq-hero-text {
  color: #fff;
}

.incubiq-hero-heading {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.incubiq-hero-subheading {
  font-size: 1.2rem;
  color: #333; /* Color changed to #333 for the paragraph */
  margin-bottom: 30px;
  font-style: normal; /* Removed italic */
}

.incubiq-cta-button {
  padding: 12px 30px;
  font-size: 1.1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

.incubiq-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Adjusting bottom padding and responsiveness for mobile screens */
@media (max-width: 768px) {
  .incubiq-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .incubiq-hero-heading {
    font-size: 2rem;
  }

  .incubiq-hero-subheading {
    font-size: 1rem;
    color: #333;
  }

  .incubiq-cta-button {
    font-size: 1rem;
  }

  .incubiq-hero-image img {
    max-width: 90%;
  }

  /* Reducing bottom padding to prevent extra space on mobile */
  .incubiq-hero-section {
    padding-bottom: 20px; /* Adjusted bottom padding for mobile */
  }
}

@media (max-width: 480px) {
  .incubiq-hero-heading {
    font-size: 1.5rem;
  }

  .incubiq-hero-subheading {
    font-size: 0.9rem;
  }

  .incubiq-cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .incubiq-hero-image img {
    max-width: 100%;
  }

  /* Additional adjustment for bottom padding */
  .incubiq-hero-section {
    padding-bottom: 10px; /* Further reduced padding on small mobile screens */
  }
}


.startup-programs-section {
  padding: 60px 0;
}
.startup-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.startup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.startup-card-header {
  background: linear-gradient(90deg, #012970, #00B7D3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}
.startup-card-text {
  color: #555;
  min-height: 60px;
  margin-bottom: 15px;
  font-size: 14px;
}
.startup-btn {
  border: 1px solid #012970;
  background: #fff;
  color: #012970;
  padding: 8px 25px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255,106,0,0.2);
}
.startup-btn:hover {
  background: #00B7D3;
  color: #fff;
  box-shadow: 0 5px 12px rgba(255,106,0,0.3);
}
.startup-illustration {
  margin-top: 20px;
}
.startup-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.startup-subtext {
  color: #444;
  font-size: 15px;
}

