
  
  @font-face {
      font-family: 'Plain-Regular';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Plain-Light';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
  }

  @font-face {
      font-family: 'Plain-Bold';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
  }

  :root {
    --primary-color:        #05c3de;
    --secondary-color:      #ff935c;
    --accent-color:         #8b5cf6;
    --white-color:          #ffffff;
    --dark-color:           #050b18;
    --project-bg:           rgba(255,255,255,0.65);
    --menu-bg:              rgba(5,11,24,0.9);
    --body-gradient:        radial-gradient(circle at top left, #0f172a, #050b18 45%),
                            linear-gradient(120deg, rgba(15,183,209,0.15), rgba(139,92,246,0.15));
    --section-gradient:     linear-gradient(135deg, rgba(5,195,222,0.15), rgba(139,92,246,0.12));
    --glass-bg:             rgba(255,255,255,0.9);
    --glass-border:         rgba(255,255,255,0.35);
    --shadow-soft:          0 30px 60px rgba(8,15,40,0.18);

    --title-color:          #051124;
    --gray-color:           #8a94a6;
    --link-color:           #0f172a;
    --p-color:              #2a3140;

    --base-font-family:     'Plain-Light', sans-serif;
    --title-font-family:    'Plain-Regular', sans-serif;
    --font-bold-family:     'Plain-Bold', sans-serif;
    --font-weight-bold:     bold;

    --h1-font-size:         44px;
    --h2-font-size:         34px;
    --h3-font-size:         24px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       15px;

    --border-radius-large:  100px;
    --border-radius-small:  18px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--body-gradient);
    font-family: var(--base-font-family);
    color: var(--p-color);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
  }

  body::before,
  body::after {
    content: "";
    position: fixed;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
  }

  body::before {
    background: radial-gradient(circle, rgba(5,195,222,0.45), transparent 60%);
    top: -12vw;
    right: -8vw;
    animation: orbit 18s ease-in-out infinite;
  }

  body::after {
    background: radial-gradient(circle, rgba(255,147,92,0.35), transparent 60%);
    bottom: -10vw;
    left: -6vw;
    animation: orbit 22s ease-in-out infinite reverse;
  }

  nav,
  section,
  footer,
  header {
    position: relative;
    z-index: 2;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-family: var(--title-font-family);
    line-height: 1.15;
    color: var(--title-color);
    letter-spacing: -0.01em;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: 700;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: 600;
    margin-bottom: 0.5em;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: 600;
    margin-bottom: 0.2em;
  }

  h4 {
    color: var(--gray-color);
    font-family: var(--base-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.75em;
    margin-bottom: 1.2em;
  }

  b, 
  strong {
    letter-spacing: 0;
    color: var(--secondary-color);
    font-weight: 700;
  }

  .highlight {
    color: var(--secondary-color);
    text-shadow: 0 10px 30px rgba(255,147,92,0.35);
  }

  /*  BLOCKQUOTES */
  .quote {
    position: relative;
    margin: 0;
   
  }

  .quote::after {
    content: "“";
    position: absolute;
    bottom: -80px;
    left: 20px;
    font-family: "Times New Roman", serif;
    color: var(--accent-color);
    font-weight: var(--font-weight-bold);
    font-size: 14em;
    line-height: 0;
    opacity: 0.08;
  }

  blockquote {
    border-left: 5px solid rgba(255,255,255,0.5);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(5,17,36,0.8);
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
  }


  /* BUTTON */
  .custom-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: var(--border-radius-large);
    padding: 12px 32px 14px 32px;
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 0.02em;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-btn.btn-bg {
    background: linear-gradient(120deg, var(--secondary-color), var(--accent-color));
    color: var(--white-color);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(5,195,222,0.25);
  }
  
  .custom-btn:hover,
  .custom-btn:focus {
    background: linear-gradient(120deg, var(--accent-color), var(--primary-color));
    color: var(--white-color);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, box-shadow 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--secondary-color);
    outline: none;
    text-decoration: none;
  }

  ::selection {
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .section-padding,
  .section-padding-half,
  .project-detail,
  .project,
  .resource-section,
  .contact {
    color: rgba(255,255,255,0.92);
  }

  .section-padding h1,
  .section-padding h2,
  .section-padding h3,
  .section-padding h4,
  .section-padding-half h1,
  .section-padding-half h2,
  .section-padding-half h3,
  .section-padding-half h4,
  .project-detail h1,
  .project-detail h2,
  .project-detail h3,
  .project-detail h4,
  .project h1,
  .project h2,
  .project h3,
  .project h4,
  .resource-section h1,
  .resource-section h2,
  .resource-section h3,
  .resource-section h4,
  .contact h1,
  .contact h2,
  .contact h3,
  .contact h4 {
    color: var(--white-color);
  }

  .section-padding a,
  .section-padding-half a,
  .project-detail a,
  .project a,
  .resource-section a,
  .contact a {
    color: rgba(255,255,255,0.9);
  }

  .section-padding a:hover,
  .section-padding-half a:hover,
  .project-detail a:hover,
  .project a:hover,
  .resource-section a:hover,
  .contact a:hover {
    color: var(--secondary-color);
  }

  .section-padding p,
  .section-padding-half p,
  .project-detail p,
  .project p,
  .resource-section p,
  .contact p,
  .section-padding small,
  .section-padding-half small,
  .project-detail small,
  .project small,
  .resource-section small,
  .contact small {
    color: rgba(255,255,255,0.9);
  }

  .section-padding, 
  .section-padding-half, 
  .project-detail {
    position: relative;
  }

  .content-on-light {
    color: var(--p-color);
  }

  .content-on-light h1,
  .content-on-light h2,
  .content-on-light h3,
  .content-on-light h4,
  .content-on-light h5,
  .content-on-light h6 {
    color: var(--title-color);
  }

  .content-on-light p,
  .content-on-light li,
  .content-on-light span,
  .content-on-light small,
  .content-on-light td {
    color: var(--p-color);
  }

  .content-on-light a {
    color: var(--link-color);
  }

  .content-on-light a:hover {
    color: var(--secondary-color);
  }

  .section-padding {
    padding: 8em 0;
  }

  .section-padding-half {
    padding: 4em 0;
  }

  .section-padding::after,
  .section-padding-half::after,
  .project-detail::after {
    content: "";
    position: absolute;
    inset: clamp(10px, 3vw, 40px);
    background: var(--section-gradient);
    border-radius: 40px;
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
  }

  .google-map {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-small);
  }

  .google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }



  /*---------------------------------------
    MENU             
  -----------------------------------------*/

  .navbar {
    background: var(--menu-bg);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(5,11,24,0.4);
    z-index: 4;
    top: 0;
    right: 0;
    left: 0;
    padding: 1.2em 0;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h2-font-size);
  }

  .navbar-brand img {
    max-width: 200px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(5,195,222,0.35));
  }

  .navbar-brand:hover img {
    transform: translateY(-3px);
  }

  .nav-link {
    color: rgba(255,255,255,0.9);
    font-size: var(--menu-font-size);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 1.2em;
    padding: 0.6em 0;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--secondary-color);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  .nav-item.dropdown {
    position: relative;
  }

  .nav-dropdown {
    list-style: none;
    padding: 0.8em 0;
    margin: 0;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: rgba(8,20,40,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
  }

  .nav-dropdown li a {
    display: block;
    padding: 0.55em 1.5em;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }

  .nav-dropdown li a:hover {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.05);
  }

  .nav-item.dropdown:hover .nav-dropdown,
  .nav-item.dropdown:focus-within .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  @media (max-width: 991px) {
    .nav-dropdown {
      position: static;
      background: transparent;
      border: 0;
      box-shadow: none;
      opacity: 1;
      transform: none;
      pointer-events: auto;
      padding: 0;
      margin-left: 0;
    }

    .nav-dropdown li a {
      padding: 0.4em 0;
      color: rgba(255,255,255,0.85);
    }
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    background: linear-gradient(120deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--font-bold-family);
    padding: 0.6em 2em 0.8em 2em;
    box-shadow: 0 12px 25px rgba(255,147,92,0.35);
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact::after {
    display: none;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact:hover,
  .navbar-expand-lg .navbar-nav .nav-link.contact.active {
    transform: translateY(-2px);
    background: linear-gradient(120deg, var(--accent-color), var(--primary-color));
    color: var(--white-color);
  }

  .navbar-nav .navbar-toggler-icon {
    background: none;
  }

  .navbar-toggler {
    border: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 38px;
    height: 38px;
    outline: none;
    background: transparent;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(5,195,222,0.3);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }



  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    position: relative;
    padding: 7em 0;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12), transparent 60%),
                linear-gradient(135deg, #031228 0%, #08384a 55%, #0a5f73 100%);
    color: var(--white-color);
  }

  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(30px);
    z-index: 0;
  }

  .hero::before {
    background: radial-gradient(circle, rgba(5,195,222,0.55), transparent 60%);
    top: -40px;
    left: -90px;
    animation: float 12s ease-in-out infinite;
  }

  .hero::after {
    background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 60%);
    bottom: -120px;
    right: -80px;
    animation: float 16s ease-in-out infinite reverse;
  }

  .hero-text {
    position: relative;
    z-index: 2;
    background: rgba(3,16,37,0.65);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 2.5em;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  }

  .hero-text p {
    color: rgba(255,255,255,0.85);
  }

  .hero-text strong {
    color: var(--white-color);
    letter-spacing: 0.05em;
  }

  .hero-image {
    position: relative;
    top: 1em;
    z-index: 2;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    inset: 10% 5% 0;
    border-radius: 40px;
    background: rgba(5,195,222,0.18);
    filter: blur(20px);
    z-index: -1;
  }

  .hero-image img {
    filter: drop-shadow(0 25px 60px rgba(3,18,40,0.45));
    animation: float 10s ease-in-out infinite;
  }



  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  .project {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(5,195,222,0.08));
  }

  .project-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .project-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(5,11,24,0.35);
  }

  .project-wrapper img {
    border-radius: 0;
    transition: transform 0.5s ease;
  }

  .project-wrapper:hover img {
    transform: scale(1.05);
  }

  .project-info {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    position: absolute;
    bottom: 32px;
    right: 32px;
    left: 32px;
    padding: 28px 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .project-info small {
    font-family: Plain-Bold;
    color: var(--gray-color);
    position: relative;
    top: 2px;
  }

  .project-info a {
    color: var(--primary-color);
  }

  .project-info .project-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  }

  .project-icon {
    position: absolute;
    right: 30px;
    top: 35px;
    background: var(--dark-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--h2-font-size);
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    padding-left: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  }

  .owl-theme .owl-dots .owl-dot {
    outline: none;
  }

  .owl-theme .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.4);
    width: 50px;
    height: 3px;
    margin:  35px 5px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
    transform: scaleX(1.3);
  }

  .list-detail {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }

  .list-detail li {
    display: block;
    list-style: none;
    margin: 0.6em 0 0 0.8em;
  }

  .list-detail li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 16px 16px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    border-style: solid;
    position: absolute;
    left: 0;
  }

  .list-detail span {
    position: relative;
    bottom: 5px;
  }

  .client-info img {
    width: 100px;
    margin-right: 1em;
  }

  .project-info,
  .resource-highlight,
  .resource-card,
  .resource-list li,
  .job-card,
  .contact-form,
  .newsletter-form {
    color: var(--p-color);
  }

  .project-info h1, .project-info h2, .project-info h3, .project-info h4,
  .resource-highlight h1, .resource-highlight h2, .resource-highlight h3, .resource-highlight h4,
  .resource-card h1, .resource-card h2, .resource-card h3, .resource-card h4,
  .resource-list li h1, .resource-list li h2, .resource-list li h3, .resource-list li h4,
  .job-card h1, .job-card h2, .job-card h3, .job-card h4,
  .contact-form h1, .contact-form h2, .contact-form h3, .contact-form h4,
  .newsletter-form h1, .newsletter-form h2, .newsletter-form h3, .newsletter-form h4 {
    color: var(--title-color);
  }

  .project-info a,
  .resource-highlight a:not(.custom-btn),
  .resource-card a:not(.custom-btn),
  .resource-list li a,
  .job-card a,
  .contact-form a,
  .newsletter-form a {
    color: var(--link-color);
  }

  .project-info a:hover,
  .resource-highlight a:not(.custom-btn):hover,
  .resource-card a:not(.custom-btn):hover,
  .resource-list li a:hover,
  .job-card a:hover,
  .contact-form a:hover,
  .newsletter-form a:hover {
    color: var(--secondary-color);
  }

  .full-image {
    margin: 3em auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    width: min(50vw, 900px);
  }

  .full-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }

  .full-image:hover img {
    transform: scale(1.03);
  }



  /*---------------------------------------
      ABOUT            
  -----------------------------------------*/

  .about {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    display: block;
    margin: 0 auto;
  }

  .about-grid,
  .about-grid-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .about-info {
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: 26px;
    background-color: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--p-color);
  }

  .about-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(8,15,40,0.25);
}

.about-info h1,
.about-info h2,
.about-info h3,
.about-info h4,
.about-info h5,
.about-info h6 {
  color: var(--title-color);
}

.about-info a {
  color: var(--link-color);
}

  .about-info a:hover {
    color: var(--secondary-color);
  }

  .about-grid-team {
    gap: 22px;
  }

  .about-grid-team .about-info {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    gap: 10px;
    min-height: auto;
    max-height: none;
  }

  .about-grid .about-info,
  .about-grid .about-info p,
  .about-grid .about-info small {
    color: var(--p-color);
  }

  .about-grid .about-info h2 {
    color: var(--title-color);
  }

  .about-grid-team .about-info > [class*="col-"] {
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
    display: block;
  }

  .about-grid-team .about-info {
    color: var(--p-color);
  }

  .about-grid-team .about-info h4 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin: 0.3em 0 0.5em !important;
    padding: 0 !important;
    color: var(--secondary-color);
  }

  .about-grid-team .about-info p {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 0.5em !important;
    color: var(--p-color);
  }

  .about-grid-team .about-info p:last-child {
    margin-bottom: 0;
  }

  .about-grid-team .about-info strong {
    color: var(--accent-color);
  }

  .about-grid-team .about-info small {
    color: var(--gray-color);
  }

  .about-grid-team .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.6em;
  }

  .about-grid-team .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-grid-team .team-body {
    display: flex;
    flex-direction: column;
    gap: 0.45em;
  }

  @media (max-width: 768px) {
    .about-grid,
    .about-grid-team {
      grid-template-columns: 1fr;
    }
  }


  /*---------------------------------------
      BLOG            
  -----------------------------------------*/

  .blog-header {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
  }

  .blog-header img {
    border-radius: var(--border-radius-small);
    display: block;
  }

  .blog-header-info {
    background: linear-gradient(transparent,rgba(0,0,0,0.95));
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2em;
  }

  .blog-header-info h3 {
    max-width: 80%;
  }

  .blog-header-info a {
    color: var(--white-color);
  }

  .blog-header-info a:hover {
    color: var(--secondary-color);
  }

  .blog-sidebar img {
    border-radius: var(--border-radius-small);
    width: 159px;
    margin-right: 22px;
  }

  .blog-sidebar h3 {
    font-size: 18px;
  }

  /*---------------------------------------
     RESOURCES              
  -----------------------------------------*/

  .resource-hero {
    background: linear-gradient(135deg, #031f2c, #05788f);
    color: var(--white-color);
    border-radius: 36px;
    padding: 3em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(5,11,24,0.45);
  }

  .resource-hero::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.25);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
  }

  .resource-hero > * {
    position: relative;
    z-index: 1;
  }

  .resource-hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    color: rgba(255,255,255,0.8);
  }

  .resource-hero-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
  }

  .resource-highlight,
  .resource-card {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    padding: 2.5em;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .resource-card {
    height: 100%;
    color: var(--p-color);
  }

  .resource-highlight h3,
  .resource-card h3,
  .resource-list li h4 {
    color: var(--title-color);
  }

  .resource-highlight p,
  .resource-card p,
  .resource-list li p,
  .resource-meta span {
    color: var(--p-color);
  }

  .resource-highlight:hover,
  .resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(8,15,40,0.2);
  }

  .resource-section {
    position: relative;
    background: transparent;
  }

  .resource-section.alt-bg {
    background: rgba(255,255,255,0.03);
  }

  .resource-card h3 {
    font-size: 20px;
  }

  .resource-chip {
    align-self: flex-start;
    background: rgba(5, 195, 222, 0.18);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    font-size: 14px;
    color: var(--gray-color);
  }

  .resource-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .resource-link::after {
    content: "\f061";
    font-family: "FontAwesome";
    font-size: 0.9em;
    transition: transform 0.3s ease;
  }

  .resource-link:hover {
    color: var(--secondary-color);
  }

  .resource-link:hover::after {
    transform: translateX(4px);
  }

  .resource-list {
    list-style: none;
    padding: 0;
    margin: 2em 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }

  .resource-list li {
    background: rgba(255,255,255,0.94);
    border-radius: 26px;
    padding: 1.8em;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.45);
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
    flex-wrap: wrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--p-color);
  }

  .resource-list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(8,15,40,0.2);
  }

  .resource-list h4 {
    margin-bottom: 0.3em;
  }

  .resource-list a {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .resource-list a:hover {
    color: var(--secondary-color);
  }

  .resource-cta {
    background: var(--dark-color);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 36px;
    padding: 3em;
    box-shadow: 0 35px 80px rgba(3,6,15,0.6);
    color: var(--white-color);
  }

  .resource-cta h2,
  .resource-cta p {
    color: var(--white-color);
  }

  @media (max-width: 768px) {
    .resource-hero-list {
      flex-direction: column;
      gap: 0.5em;
    }

    .resource-hero {
      padding: 2em;
      border-radius: 26px;
    }

    .resource-highlight,
    .resource-card,
    .resource-list li {
      padding: 1.5em;
    }
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .newsletter-form .form-control,
  .contact-form .form-control {
    box-shadow: inset 0 0 0 1px rgba(5,5,5,0.05);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(5,195,222,0.2);
    border-radius: 18px;
    padding: 1.3em 1.4em;
    margin: 14px 0;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }

  .newsletter-form .form-control:focus,
  .contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(5,195,222,0.25);
  }

  .newsletter-form button,
  .contact-form #submit-button {
    background: linear-gradient(120deg, var(--secondary-color), var(--primary-color));
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 1;
    padding: 1.3em 2em;
    box-shadow: 0 20px 40px rgba(5,195,222,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .newsletter-form button:hover,
  .contact-form #submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(5,195,222,0.45);
  }

  .newsletter-form h4,
  .newsletter-form h2 {
    color: var(--white-color);
  }

  .newsletter-form label,
  .newsletter-form small {
    color: rgba(255,255,255,0.85);
  }

  /*-----------------------------------
   Small extras for careers page 
   -----------------------------------*/
  .vacancy-grid {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  }

  .job-card {
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(120deg, var(--secondary-color), var(--accent-color));
    z-index: 0;
  }

  .job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(8,15,40,0.25);
  }

  .job-card > * {
    position: relative;
    z-index: 1;
  }
      
  .job-title{
    color: var(--title-color);
    font-weight: 700;
  }

  .job-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(5,195,222,0.12);
    color: var(--primary-color);
    display:inline-block;
    font-weight: 700;
  }

  .benefits-list li {
    margin-bottom:8px;
  }

  .job-card p,
  .job-card small,
  .job-meta {
    color: var(--p-color);
  }

  .job-meta {
    font-size:0.95rem;
    text-align: right;
  }

  .apply-btn {
    min-width:150px;
    border: none !important;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--secondary-color), var(--primary-color)) !important;
    color: var(--white-color) !important;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(5,195,222,0.35);
  }

  .apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(5,195,222,0.45);
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: linear-gradient(160deg, #02060f, #061934);
    padding: 7em 0 6em 0;
    position: relative;
    overflow: hidden;
  }

  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(5,195,222,0.25), transparent 55%);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
  }

  .site-footer > * {
    position: relative;
    z-index: 1;
  }

  .site-footer a {
    color: rgba(255,255,255,0.75);
  }

  .site-footer a:hover,
  .footer-icon {
    color: var(--secondary-color);
  }

  .site-footer p,
  .copyright-text {
    color: rgba(255,255,255,0.65);
  }

  .footer-link li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 6em;
  }

  .copyright-text {
    margin-top: 5.3em;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }

  .social-icon li a.social-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }

  .social-icon li a.social-icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
  }
 /*-----------------------------
  JOIN OUR TEAM SECTION STYLES 
  ------------------------------*/
  .join-team-section {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    color: white;
    background: linear-gradient(270deg, #05c3de, #0ea5e9, #8b5cf6, #ff935c);
    background-size: 800% 800%;
    animation: gradientShift 12s ease infinite;
  }

  @keyframes orbit {
    0% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(30px, -40px, 0) scale(1.1); }
    100% { transform: translate3d(0,0,0) scale(1); }
  }

  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .join-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  .join-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }

  .join-btn {
    display: inline-block;
    padding: 14px 40px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .join-btn:hover {
    background-color: #333;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  /* Floating animated shapes for motion background */
  .join-team-section::before,
  .join-team-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: floaty 15s infinite ease-in-out;
  }

  .join-team-section::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffffff55 10%, transparent 60%);
    top: 10%;
    left: -10%;
    animation-delay: 2s;
  }

  .join-team-section::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffffff33 10%, transparent 60%);
    bottom: -20%;
    right: -15%;
    animation-delay: 4s;
  }

  @keyframes floaty {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
  }

  @media (max-width: 768px) {
    .join-title { font-size: 2.2rem; }
    .join-subtitle { font-size: 1rem; }
    .join-btn { padding: 12px 30px; }
  }


  /*---------------------------------------
     COOKIE CONSENT
  -----------------------------------------*/

  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    width: min(600px, calc(100% - 32px));
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    padding: 24px 28px;
    z-index: 999;
    display: none;
    gap: 18px;
    color: var(--p-color);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .cookie-banner.is-visible {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .cookie-banner__title {
    font-size: 1.2rem;
    font-family: var(--title-font-family);
    margin-bottom: 6px;
  }

  .cookie-banner__content {
    flex: 1 1 auto;
  }

  .cookie-banner__text {
    font-size: 0.95rem;
    margin: 0;
  }

  .cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
  }

  .cookie-banner__button {
    flex: 1 1 140px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    padding: 12px 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cookie-banner__button:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }

  .cookie-banner__button--accept {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(5,195,222,0.25);
  }

  .cookie-banner__button--accept:hover {
    transform: translateY(-2px);
  }

  .cookie-banner__button--decline {
    background: transparent;
    color: var(--title-color);
    border: 1px solid rgba(5, 17, 36, 0.2);
  }

  .cookie-banner__link {
    color: var(--accent-color);
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .cookie-banner {
      bottom: 12px;
      padding: 20px;
    }

    .cookie-banner__title {
      font-size: 1.05rem;
    }
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (min-width: 1200px) {

    .about-info h2 {
      max-width: 100%;
    }
  }

  @media screen and (min-width: 991px) {

    .project h2 {
      max-width: 100%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 991px) {

    .hero {
      padding-top: 10em;
      padding-bottom: 4em;
      min-height: auto;
    }

    .hero-text {
      bottom: auto;
      margin-bottom: 2em;
    }

    .navbar {
      padding: 1em;
    }

    .navbar-collapse {
      text-align: center;
      padding: 2.5em 0;
    }

    .nav-link {
      display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link.contact {
      margin: 1em 0;
    }

    .copyright-text, 
    .footer-link, 
    .site-footer .social-icon {
      margin-top: 3em;
      padding: 0;
      text-align: left;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 36px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    .project-info {
      right: 0;
      left: 0;
      margin: 0 auto;
    }

    .hero {
      padding-top: 8em;
    }

    .hero-text {
      padding: 1.8em;
    }

    .nav-link {
      margin: 0.5em 0;
    }

    .footer-link, 
    .site-footer .social-icon {
      margin-top: 1em;
    }

    .copyright-text {
      margin: 2.5em 0 1em 0;
    }

    .footer-link li {
      margin-left: 0;
    }
  }
.full-image {
    margin: 3em auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
  }

  .full-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
  }

  .full-image:hover img {
    transform: scale(1.03);
  }
