/**
* Template Name: Strive
* Template URL: https://bootstrapmade.com/strive-bootstrap-business-template/
* Updated: Sep 20 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto";
  --heading-font: "Roboto";
  --nav-font: "Roboto";
}
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Roboto", sans-serif;
}
/* APPLY DEFAULT FONT GLOBALY 
body, html {
  font-family: var(--default-font);
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

.navbar, .nav-link {
  font-family: var(--nav-font);
}*/
/* 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: #282828; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ea7c00; /* 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: #5b5b5b; /* The default color of the main navmenu links */
  --nav-hover-color: #ea7c00; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ea7c00; /* 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: #f5f2ef;
  --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);

}

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 {
  --background-color: #fff;
  color: #000;
  background-color: #fff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: #07083f;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 5px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: #07083f;
  border: 2px solid #ed9026;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #5b5b5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --default-color: #ed9026;
  --heading-color: #ed9026;
  --nav-color: #ed9026;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #5b5b5b;
  --nav-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 35px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: black;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ed9026;
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color:#ed9026;
    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: relative;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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;
  }
}
#navmenu .bold li a {
  font-weight: bold;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type="email"]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type="text"],
input[type="email"],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 400;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.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%);
}

/*--------------------------------------------------------------
# header menu bar
--------------------------------------------------------------*/
.mobile-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 9999;
}

.mobile-bottom-buttons a {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.mobile-bottom-buttons .enquire-btn {
  background-color: #f38831; /* orange-yellow */
}

.mobile-bottom-buttons .call-btn {
  background-color: #241a3c; /* dark violet */
}

@media (min-width: 1200px) {
  .mobile-bottom-buttons {
    display: none;
  }
}
/* Dropdown Styles */
.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navmenu li {
  position: relative;
}

.navmenu ul ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.navmenu ul li:hover > ul {
  display: block;
}

.navmenu ul ul li {
  white-space: nowrap;
  min-width: 200px;
}

/* 3rd-level dropdown */
.navmenu ul ul ul {
  left: 100%;
  top: 0;
}

/* Arrows & alignment */
.navmenu .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hover effect */
.navmenu ul li a:hover {
  color: #d9232d;
}

/* Optional: Make arrows smaller */
.toggle-dropdown {
  font-size: 0.8rem;
  margin-left: 5px;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  
  scroll-margin-top: 0px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 57px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;

  margin: 4px 10px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section picture,
.hero-section img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
}

/*

/*--------------------------------------------------------------

# Services Section
--------------------------------------------------------------*/
.text-orange {
  color: #f38831;
}

.text-blue {
  color: #1d2b6d;
}

/* Card design */
.project-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Image Circle */
.circle-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f1f1f1;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title */
.project-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d2b6d;
}

/* Description */
.project-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.btn-gold {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f2c063, #d4a544);
  color: #1d2b6d;
  font-weight: 600;
  text-decoration: none;
}
/*--------------------------------------------------------------

# two box
--------------------------------------------------------------*/
.skyline-mission-vision {
  background: #f9f9f9;
  padding-top: 20px;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
}

.section-title span {
  color: #0b2341;
}

.section-title h2 {
  color: #f36f21;
}

.vision-card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 40px 30px 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.circle-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-gold {
  background: linear-gradient(180deg, #f9c851 0%, #d5a11e 100%);
  border: none;
  color: #111;
  font-weight: 600;
  border-radius: 5px;
  padding: 8px 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #ffdb72 0%, #c69412 100%);
}

.vision-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Optional subtle skyline effect at the bottom */
.vision-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url('assets/img/index/skyline-bg.png') center bottom no-repeat;
  background-size: cover;
  opacity: 0.1;
}

/*--------------------------------------------------------------

# skyline-process 
--------------------------------------------------------------*/
.skyline-process {
  background: #fff;
  padding: 60px 0;
  position: relative;
  border-top: 2px solid #f36f21;
  border-bottom: 2px solid #f36f21;
border-radius: 10px 400px 0px 0px;
}
@media (max-width:480px) {
    .skyline-process {
  background: #fff;
  padding: 60px 0;
  position: relative;
  border-top: 2px solid #f36f21;
  border-bottom: 2px solid #f36f21;
border-radius: 10px 100px 0px 0px;
}
}
.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.section-title span {
  color: #f36f21;
}

.section-title .lead {
  font-size: 16px;
  margin-top: 10px;
  color: #444;
  font-weight: 500;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  background: #fff;
  border: 1px solid #f36f21;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.process-card .process-image {
  width: 45px;
  height: auto;
  margin-bottom: 18px;
}

.process-card h4 {
  color: #f36f21;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.process-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.process-card strong {
  color: #111;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/* ===== Ready to Build Section ===== */
.contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.contact-card {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 20px;
  border: 3px solid #F38831;
  max-width: 530px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.contact-card h2 {
  color: #1d2b6d;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  color: #333;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #F38831;
  box-shadow: none;
}

.submit-btn {
  background-color: #1d2b6d;
  border: none;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #F38831;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 40px 25px;
    max-width: 90%;
  }
}
/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/
.footer-section {
  background-color: #0c1446;
  color: #fff;
}

.footer-section a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #F38831;
}

.footer-section .text-warning {
  color: #F38831 !important;
}

.footer-section .bi {
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-section .bi:hover {
  color: #F38831;
}
.follow{
  margin-top: 0px;
}
@media (max-width: 480px) {
  .follow {
    margin-top: 0px;
  }
}
.quick-links li {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------
.features {
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.features .features-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .features .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.features .features-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .features .features-content h2 {
    font-size: 2rem;
  }
}

.features .features-content > p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.features .main-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .features .main-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.features .main-feature .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6a11cb 30%)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 2rem;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .main-feature .feature-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.features .main-feature .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6a11cb 30%)
  );
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  border: none;
}

.features .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features .features-grid {
    grid-template-columns: 1fr;
  }
}

.features .feature-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 98%) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.features .feature-card:hover::before {
  opacity: 1;
}

.features .feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #6a11cb 30%)
  );
  color: var(--contrast-color);
}

.features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features .feature-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-img .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio .portfolio-card .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-card .portfolio-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .portfolio-img .portfolio-overlay a:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 20%);
  transform: translateY(-5px);
}

.portfolio .portfolio-card .portfolio-info {
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.portfolio .portfolio-card .portfolio-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 10px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio .portfolio-card .portfolio-info .portfolio-tags span {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.portfolio .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.portfolio .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Pricing Section
 =========================================
   TRACK RECORD SECTION
========================================= */
/* =========================================================
   SKYLINE — CINEMATIC TRACK RECORD
========================================================= */

.track-record-section {
  position: relative;
  width: 100%;
  margin: 20px 0 30px;
  padding: 0;
}

.track-record-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.track-card {
  position: relative;

  min-width: 0;
  min-height: 255px;

  padding: 28px 30px 25px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(16, 27, 77, 0.10);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(243, 136, 49, 0.10),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fafbff 100%
    );

  box-shadow:
    0 12px 35px rgba(7, 8, 63, 0.07);

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease;
}


/* Cinematic shine */
.track-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -90px;
  top: -90px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(243,136,49,.16),
      transparent 70%
    );

  pointer-events: none;

  transition: transform .6s ease;
}


/* Bottom orange accent */
.track-card::after {
  content: "";

  position: absolute;

  left: 30px;
  bottom: 0;

  width: 45px;
  height: 3px;

  border-radius: 5px 5px 0 0;

  background: #f38831;

  transition:
    width .45s ease,
    box-shadow .45s ease;
}


.track-card:hover {
  transform: translateY(-8px);

  border-color: rgba(243,136,49,.28);

  box-shadow:
    0 25px 60px rgba(7, 8, 63, 0.13);
}


.track-card:hover::before {
  transform: scale(1.5);
}


.track-card:hover::after {
  width: 90px;

  box-shadow:
    0 0 18px rgba(243,136,49,.35);
}


/* =========================================================
   BACKGROUND NUMBER
========================================================= */

.track-number-bg {
  position: absolute;

  top: 12px;
  right: 20px;

  z-index: 0;

  font-size: 90px;
  line-height: .8;

  font-weight: 900;

  letter-spacing: -6px;

  color: rgba(16, 27, 77, 0.035);

  pointer-events: none;

  user-select: none;
}
.text{
  font-size: 22px;
}

/* =========================================================
   TITLE
========================================================= */

.track-title {
  position: relative;
  z-index: 2;

  margin: 0 0 20px;

  color: #07083f;

  font-size: 11px;
  line-height: 1.3;

  font-weight: 800;

  letter-spacing: .16em;

  text-transform: uppercase;
}


/* Small orange line */
.track-title::before {
  content: "";

  display: inline-block;

  width: 24px;
  height: 2px;

  margin-right: 9px;

  vertical-align: middle;

  background: #f38831;

  border-radius: 3px;
}


/* =========================================================
   MAIN NUMBER
========================================================= */

.track-count {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: baseline;

  margin: 0;

  color: #07083f;

  font-size: clamp(64px, 5vw, 88px);

  line-height: .9;

  font-weight: 900;

  letter-spacing: -5px;

  white-space: nowrap;
}


/* Orange gradient on number */
.track-count .counter {
  background:
    linear-gradient(
      135deg,
      #07083f 0%,
      #182866 65%,
      #f38831 130%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


/* Rupee */
.track-count .currency {
  margin-right: 4px;

  color: #f38831;

  font-size: clamp(34px, 2.7vw, 48px);

  font-weight: 800;

  letter-spacing: -2px;
}


/* Plus / Cr */
.track-count .plus {
  margin-left: 5px;

  color: #f38831;

  font-size: clamp(36px, 2vw, 34px);

  font-weight: 800;

  letter-spacing: -1px;
}


/* =========================================================
   BOTTOM INFORMATION
========================================================= */

.track-bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 28px;

  color: #686c7c;

  font-size: 11px;

  font-weight: 600;

  line-height: 1.4;

  letter-spacing: .02em;
}


/* =========================================================
   ARROW
========================================================= */

.track-arrow {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(16,27,77,.06);

  color: #07083f;

  font-size: 15px;
  font-weight: 700;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}


.track-card:hover .track-arrow {
  background: #f38831;

  color: #ffffff;

  transform:
    translate(3px,-2px)
    rotate(8deg);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

  .track-record-grid {
    gap: 22px;
  }

  .track-card {
    min-height: 270px;

    padding: 32px 34px 27px;
  }

  .track-count {
    font-size: 90px;
  }

  .track-number-bg {
    font-size: 105px;
  }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .track-record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .track-card {
    min-height: 250px;
  }

  .track-count {
    font-size: clamp(62px, 7vw, 82px);
  }

  .track-number-bg {
    font-size: 90px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

  .track-record-section {
    margin: 15px 0 25px;
  }

  .track-record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .track-card {
    min-height: 225px;

    padding: 23px 20px 20px;

    border-radius: 20px;
  }

  .track-number-bg {
    top: 12px;
    right: 13px;

    font-size: 68px;

    letter-spacing: -4px;
  }

  .track-title {
    margin-bottom: 18px;

    font-size: 9px;

    letter-spacing: .12em;
  }

  .track-title::before {
    width: 17px;

    margin-right: 6px;
  }

  .track-count {
    font-size: clamp(48px, 10vw, 68px);

    letter-spacing: -4px;
  }

  .track-count .currency {
    font-size: 30px;
  }

  .track-count .plus {
    font-size: 22px;
  }

  .track-bottom {
    margin-top: 22px;

    font-size: 10px;

    gap: 8px;
  }

  .track-arrow {
    width: 28px;
    height: 28px;

    flex-basis: 28px;

    font-size: 13px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

  .track-record-section {
    margin: 10px 0 20px;
  }

  .track-record-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .track-card {
    min-height: 190px;

    padding: 22px 22px 19px;

    border-radius: 19px;
  }

  .track-number-bg {
    top: 10px;
    right: 15px;

    font-size: 65px;
  }

  .track-title {
    margin-bottom: 15px;

    font-size: 9px;
  }

  .track-count {
    font-size: clamp(58px, 16vw, 78px);

    letter-spacing: -4px;
  }

  .track-count .currency {
    font-size: 31px;
  }

  .track-count .plus {
    font-size: 23px;
  }

  .track-bottom {
    margin-top: 20px;

    font-size: 10px;
  }

  .track-arrow {
    width: 29px;
    height: 29px;

    flex-basis: 29px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .track-card {
    min-height: 180px;

    padding: 20px;
  }

  .track-count {
    font-size: 55px;
  }

  .track-count .currency {
    font-size: 27px;
  }

  .track-count .plus {
    font-size: 20px;
  }

  .track-bottom {
    font-size: 9px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .track-card,
  .track-card::before,
  .track-card::after,
  .track-arrow {
    transition: none !important;
  }

  .track-card:hover {
    transform: none;
  }

}
/* =========================================
   SKYLINE CINEMATIC TRACK RECORD
========================================= */

.leadership-track-section {
  position: relative;
  width: 100%;
  overflow: hidden;

  padding: 80px 0 100px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(242, 135, 49, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(242, 135, 49, 0.05),
      transparent 30%
    ),
    #07083F;

  color: #ffffff;
}


/* =========================================
   CINEMATIC DOT BACKGROUND
========================================= */

.leadership-track-section::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.16;

  background-image:
    radial-gradient(
      rgba(255,255,255,0.25) 1px,
      transparent 1px
    );

  background-size: 13px 13px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent
    );

  pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.leadership-track-container {
  position: relative;
  z-index: 2;

  width: min(1780px, calc(100% - 100px));

  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.leadership-track-header {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  margin-bottom: 48px;
}


.header-accent {
  width: 4px;
  min-width: 4px;

  height: 58px;

  background: #F28731;

  box-shadow:
    0 0 18px rgba(242,135,49,0.4);
}


.header-eyebrow {
  color: #ffffff;

  font-size: 20px;

  line-height: 1.2;

  font-weight: 800;

  letter-spacing: 0.5px;
}


.header-subtitle {
  margin-top: 7px;

  color: rgba(255,255,255,0.72);

  font-size: 19px;

  line-height: 1.4;

  font-weight: 400;
}


/* =========================================
   MAIN TITLE
========================================= */

.track-main-title {
  margin: 0 0 48px;

  text-align: center;

  color: #ffffff;

  font-size: clamp(28px, 3vw, 45px);

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -0.8px;
}


/* =========================================
   ROW
========================================= */

.track-row {
  position: relative;

  width: 100%;

  min-height: 155px;

  margin-bottom: 18px;

  display: grid;

  grid-template-columns:
    minmax(510px, 0.9fr)
    minmax(600px, 1.4fr);

  align-items: stretch;

  border: 1px solid rgba(255,255,255,0.16);

  border-radius: 17px;

  background:
    linear-gradient(
      110deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.015)
    );

  overflow: hidden;

  transition:
    border-color .4s ease,
    transform .4s ease,
    box-shadow .4s ease;
}


.track-row:hover {
  border-color: rgba(242,135,49,0.42);

  transform: translateY(-2px);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.22);
}


/* =========================================
   LEFT COMPANY AREA
========================================= */

.track-company {
  position: relative;

  display: grid;

  grid-template-columns:
    90px
    minmax(210px, 1fr);

  grid-template-rows:
    1fr
    auto;

  column-gap: 25px;

  align-items: center;

  padding: 22px 32px;

  border-right: 1px solid rgba(255,255,255,0.10);

  background:
    radial-gradient(
      circle at 40% 50%,
      rgba(242,135,49,0.07),
      transparent 50%
    );
}


/* =========================================
   NUMBER
========================================= */

.track-index {
  grid-row: 1 / 3;

  align-self: center;

  color: #F28731;

  font-size: 48px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  opacity: .78;
}


/* =========================================
   LOGO
========================================= */



/* =========================================================
   TRACK RECORD — COMPANY LOGO
========================================================= */

.track-logo-wrap {
  width: 210px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  margin: 0;
  padding: 0;

  overflow: hidden;
}


/* All company logos use the same visual stage */
.track-logo,

.gsquare-logo {
  display: block;

  width: 190px;
  height: 48px;

  max-width: 190px;
  max-height: 48px;

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: left center;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    opacity .4s ease;

  opacity: .96;
}


/* White logos */
.track-logo {
  filter:
    brightness(0)
    invert(1);
}


/* Skyline logo */
.track-logo.skyline-logo {
  filter:
    brightness(0)
    invert(1);
}


/* G Square */
.gsquare-logo {
  filter: none;
}


/* Epitome */
.epitom-logo {
  filter:
    brightness(0)
    invert(1);
}
.epitome-logo {
  display: block;

  width: 250px !important;
  max-width: 230px !important;

  height: 58px;
  max-height: 58px;

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: left center;

  opacity: .96;

  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    opacity .4s ease;
}


/* Tablet */
@media (max-width: 991px) {
  .epitome-logo {
    width: 210px !important;
    max-width: 210px !important;

    height: 52px;
    max-height: 52px;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .epitome-logo {
    width: 190px !important;
    max-width: 190px !important;

    height: 46px;
    max-height: 46px;
  }
}


/* Small mobile */
@media (max-width: 480px) {
  .epitome-logo {
    width: 175px !important;
    max-width: 175px !important;

    height: 42px;
    max-height: 42px;
  }
}

/* Hover */
.track-row:hover .track-logo,
.track-row:hover .epitom-logo,
.track-row:hover .gsquare-logo {
  transform: translateX(4px) scale(1.025);
  opacity: 1;
}


/* =========================================================
   ROLE
========================================================= */

.track-role {
  margin-top: 7px;

  color: rgba(255,255,255,.78);

  font-size: 11px;
  line-height: 1.35;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;
}




/* Preserve Skyline branding */



/* =========================================
   ROLE
========================================= */

.track-role {
  grid-column: 2;

  align-self: start;

  margin-top: 5px;

  color: #ffffff;

  font-size: 13px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: .4px;
}


/* =========================================
   PERFORMANCE AREA
========================================= */

.track-performance {
  position: relative;

  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(300px, .8fr)
    minmax(380px, 1.2fr);

  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.025)
    );
}


/* =========================================
   CENTER METRIC
========================================= */

.performance-content {
  position: relative;
  z-index: 3;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 20px;
}


.performance-pill {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 13px;

  border-radius: 7px;

  background:
    linear-gradient(
      90deg,
      rgba(242,135,49,0.15),
      rgba(242,135,49,0.08)
    );

  color: #F6B56E;

  font-size: clamp(17px, 1.35vw, 25px);

  line-height: 1;

  font-weight: 800;

  white-space: nowrap;

  box-shadow:
    inset 0 0 0 1px rgba(242,135,49,0.04);
}


.performance-pill span {
  margin: 0 5px;

  color: #F28731;
}


.performance-icon {
  width: 24px;
  height: 24px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #ffffff;

  color: #07083F;

  font-size: 12px;

  font-weight: 800;
}


/* =========================================
   GRAPH
========================================= */

.performance-chart {
  position: relative;

  height: 150px;

  min-width: 0;

  align-self: stretch;

  overflow: hidden;
}


/* Graph subtle background */

.performance-chart::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(
      rgba(255,255,255,0.14) 1px,
      transparent 1px
    );

  background-size: 10px 10px;

  opacity: .45;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 10%,
      black 100%
    );
}


.performance-chart svg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}


/* Graph line */

.chart-line {
  fill: none;

  stroke: #F28731;

  stroke-width: 2;

  vector-effect: non-scaling-stroke;

  opacity: .30;
}


/* Graph points */

.performance-chart circle {
  fill: #ffffff;

  stroke: rgba(255,255,255,0.4);

  stroke-width: 1;

  vector-effect: non-scaling-stroke;
}


/* Graph labels */

.chart-value {
  position: absolute;

  z-index: 4;

  color: #F5B36D;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.35);
}


.value-start {
  left: 3%;

  top: 62%;
}


.value-end {
  right: 3%;

  top: 20%;
}


.epitome-value {
  right: 28%;

  top: 62%;
}


/* =========================================
   ANIMATION
========================================= */

.track-row {
  opacity: 0;

  transform: translateY(25px);

  animation:
    trackReveal .8s cubic-bezier(.22,.61,.36,1) forwards;
}


.track-row:nth-child(1) {
  animation-delay: .05s;
}

.track-row:nth-child(2) {
  animation-delay: .15s;
}

.track-row:nth-child(3) {
  animation-delay: .25s;
}

.track-row:nth-child(4) {
  animation-delay: .35s;
}

.track-row:nth-child(5) {
  animation-delay: .45s;
}


@keyframes trackReveal {

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

  .leadership-track-container {
    width: min(1800px, calc(100% - 120px));
  }

  .track-row {
    min-height: 165px;
  }

  .track-company {
    grid-template-columns:
      105px
      minmax(250px, 1fr);

    padding-left: 40px;
  }

  .track-index {
    font-size: 54px;
  }

  

  .track-role {
    font-size: 15px;
  }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1399px) {

  .leadership-track-container {
    width: calc(100% - 70px);
  }

  .track-row {
    grid-template-columns:
      minmax(400px, .9fr)
      minmax(500px, 1.2fr);
  }

  .track-company {
    grid-template-columns:
      70px
      minmax(180px, 1fr);

    column-gap: 18px;

    padding: 20px 25px;
  }

  .track-index {
    font-size: 40px;
  }

  

  .track-performance {
    grid-template-columns:
      minmax(260px, .8fr)
      minmax(300px, 1.2fr);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .leadership-track-section {
    padding: 65px 0 75px;
  }

  .leadership-track-container {
    width: calc(100% - 40px);
  }

  .header-eyebrow {
    font-size: 16px;
  }

  .header-subtitle {
    font-size: 15px;
  }

  .track-main-title {
    margin-bottom: 35px;

    font-size: 29px;
  }


  /* Two-column still maintained */

  .track-row {
    grid-template-columns:
      42%
      58%;

    min-height: 145px;
  }


  .track-company {
    grid-template-columns:
      55px
      1fr;

    column-gap: 12px;

    padding: 18px;
  }


  .track-index {
    font-size: 30px;
  }


  



  .track-role {
    font-size: 10px;
  }


  .track-performance {
    grid-template-columns:
      48%
      52%;
  }


  .performance-content {
    padding: 12px;

    gap: 7px;
  }


  .performance-pill {
    font-size: 14px;

    padding: 8px 9px;
  }


  .performance-icon {
    width: 21px;
    height: 21px;

    font-size: 10px;
  }


  .performance-chart {
    height: 130px;
  }


  .chart-value {
    font-size: 10px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .leadership-track-section {
    padding: 55px 0 65px;
  }

  .leadership-track-container {
    width: calc(100% - 24px);
  }


  .leadership-track-header {
    gap: 12px;

    margin-bottom: 35px;
  }


  .header-accent {
    width: 3px;
    min-width: 3px;

    height: 48px;
  }


  .header-eyebrow {
    font-size: 11px;

    letter-spacing: .8px;
  }


  .header-subtitle {
    font-size: 11px;

    margin-top: 5px;
  }


  .track-main-title {
    margin-bottom: 28px;

    font-size: 22px;

    line-height: 1.2;
  }


  /* =====================================
     MOBILE ROW
  ====================================== */

  .track-row {
    display: block;

    min-height: auto;

    margin-bottom: 13px;

    border-radius: 12px;
  }


  /* Company section */

  .track-company {
    min-height: 110px;

    display: grid;

    grid-template-columns:
      45px
      1fr;

    grid-template-rows:
      58px
      auto;

    column-gap: 12px;

    padding: 15px 14px;

    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,0.10);
  }


  .track-index {
    grid-row: 1 / 3;

    font-size: 26px;
  }






  .track-role {
    grid-column: 2;

    align-self: center;

    margin: 0;

    font-size: 10px;

    line-height: 1.25;
  }


  /* =====================================
     PERFORMANCE MOBILE
  ====================================== */

  .track-performance {
    display: flex;

    flex-direction: column;

    width: 100%;
  }


  .performance-content {
    width: 100%;

    min-height: 62px;

    display: flex;

    justify-content: flex-start;

    padding: 12px 14px;

    gap: 8px;
  }


  .performance-pill {
    font-size: 15px;

    padding: 8px 10px;
  }


  .performance-icon {
    width: 22px;
    height: 22px;
  }


  .performance-chart {
    width: 100%;

    height: 120px;

    margin-top: -2px;
  }


  .chart-value {
    font-size: 10px;
  }


  .value-start {
    left: 5%;

    top: 56%;
  }


  .value-end {
    right: 5%;

    top: 12%;
  }


  .epitome-value {
    right: 25%;

    top: 52%;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .leadership-track-section {
    padding: 45px 0 55px;
  }


  .leadership-track-container {
    width: calc(100% - 18px);
  }


  .header-eyebrow {
    font-size: 9px;
  }


  .header-subtitle {
    font-size: 10px;
  }


  .track-main-title {
    font-size: 19px;
  }


  .track-company {
    min-height: 100px;

    grid-template-columns:
      38px
      1fr;

    grid-template-rows:
      52px
      auto;

    padding: 13px 12px;

    column-gap: 9px;
  }


  .track-index {
    font-size: 23px;
  }


  



  .track-role {
    font-size: 9px;

    letter-spacing: .2px;
  }


  .performance-content {
    min-height: 57px;

    padding: 10px 12px;
  }


  .performance-pill {
    font-size: 13px;

    padding: 7px 8px;
  }


  .performance-icon {
    width: 20px;
    height: 20px;

    font-size: 9px;
  }


  .performance-chart {
    height: 105px;
  }


  .chart-value {
    font-size: 9px;
  }

}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 360px) {

  .track-main-title {
    font-size: 17px;
  }


  


  .track-role {
    font-size: 8px;
  }


  .performance-pill {
    font-size: 11px;
  }


  .performance-chart {
    height: 95px;
  }

}

/* =========================================================
   SKYLINE — WHAT WE DO
   CINEMATIC / COMPACT / RESPONSIVE
========================================================= */
/* =========================================================
   SKYLINE — WHAT WE DO
   PREMIUM CINEMATIC SPLIT SECTION
========================================================= */

.what-we-do-section {
  position: relative;

  width: 100%;

  padding: 110px 0 90px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f8f9fc 0%,
      #ffffff 48%,
      #f4f6fb 100%
    );

  isolation: isolate;
}


/* =========================================================
   CONTAINER
========================================================= */

.what-we-do-container {
  position: relative;

  width: min(1380px, calc(100% - 80px));

  margin: 0 auto;

  z-index: 5;
}


/* =========================================================
   CINEMATIC BACKGROUND
========================================================= */

.wwd-noise {
  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: .025;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

  z-index: -2;
}


.wwd-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);

  z-index: -1;
}


.wwd-glow-1 {
  width: 600px;
  height: 600px;

  top: -300px;
  right: -200px;

  background:
    radial-gradient(
      circle,
      rgba(243,136,49,.12),
      transparent 70%
    );
}


.wwd-glow-2 {
  width: 500px;
  height: 500px;

  bottom: -300px;
  left: -250px;

  background:
    radial-gradient(
      circle,
      rgba(16,27,77,.08),
      transparent 70%
    );
}


/* =========================================================
   TOP BAR
========================================================= */

.wwd-topbar {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 55px;
}


.wwd-eyebrow {
  color: #f38831;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .20em;

  white-space: nowrap;
}


.wwd-top-line {
  width: 80px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #f38831,
      rgba(243,136,49,0)
    );
}


.wwd-top-index {
  margin-left: auto;

  color: #8a8e9c;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .15em;
}


/* =========================================================
   MAIN GRID
========================================================= */

.wwd-main {
  display: grid;

  grid-template-columns:
    minmax(360px, .88fr)
    minmax(500px, 1.12fr);

  gap: 90px;

  align-items: start;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.wwd-left {
  position: relative;

  padding-right: 30px;
}


.wwd-title-wrap {
  position: relative;

  margin-bottom: 28px;
}


.wwd-title-small {
  display: block;

  margin-bottom: -8px;

  color: #182866;

  font-size: clamp(46px, 5vw, 76px);

  line-height: .9;

  font-weight: 800;

  letter-spacing: -.055em;
}


.wwd-title {
  margin: 0;

  color: #07083f;

  font-size: clamp(78px, 8vw, 125px);

  line-height: .82;

  font-weight: 900;

  letter-spacing: -.075em;
}


.wwd-title span {
  color: #f38831;
}


/* Orange line */

.wwd-left-line {
  width: 70px;
  height: 4px;

  margin-bottom: 30px;

  border-radius: 10px;

  background: #f38831;

  box-shadow:
    0 0 20px rgba(243,136,49,.22);
}


/* Intro */

.wwd-intro {
  max-width: 500px;

  margin: 0;

  color: #5f6473;

  font-size: 16px;

  line-height: 1.8;

  font-weight: 500;
}


/* =========================================================
   MANIFESTO
========================================================= */

.wwd-manifesto {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 18px;

  max-width: 500px;

  margin-top: 48px;

  padding-top: 24px;

  border-top: 1px solid rgba(16,27,77,.12);
}


.wwd-manifesto-number {
  color: #f38831;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: .12em;
}


.wwd-manifesto strong {
  display: block;

  margin-bottom: 8px;

  color: #07083f;

  font-size: 11px;

  letter-spacing: .18em;
}


.wwd-manifesto p {
  max-width: 390px;

  margin: 0;

  color: #777b88;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   LEFT FOOTER
========================================================= */

.wwd-left-footer {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 65px;

  color: #9296a3;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .16em;
}


.wwd-footer-line {
  width: 35px;
  height: 1px;

  background: #f38831;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.wwd-right {
  position: relative;

  display: flex;

  flex-direction: column;

  border-top: 1px solid rgba(16,27,77,.12);
}


/* =========================================================
   PROCESS ITEM
========================================================= */

.wwd-item {
  position: relative;

  display: grid;

  grid-template-columns: 55px 1fr 42px;

  align-items: center;

  gap: 22px;

  min-height: 145px;

  padding: 23px 0;

  border-bottom: 1px solid rgba(16,27,77,.12);

  transition:
    padding .45s cubic-bezier(.2,.8,.2,1),
    background .45s ease;
}


/* Orange hover background */

.wwd-item::before {
  content: "";

  position: absolute;

  inset: 0;

  width: 0;

  background:
    linear-gradient(
      90deg,
      rgba(243,136,49,.07),
      rgba(243,136,49,.015),
      transparent
    );

  transition: width .5s ease;

  pointer-events: none;
}


.wwd-item:hover {
  padding-left: 18px;
}


.wwd-item:hover::before {
  width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.wwd-number {
  position: relative;

  z-index: 2;

  color: rgba(16,27,77,.20);

  font-size: 25px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.05em;

  transition:
    color .35s ease,
    transform .35s ease;
}


.wwd-item:hover .wwd-number {
  color: #f38831;

  transform: translateX(3px);
}


/* =========================================================
   ITEM CONTENT
========================================================= */

.wwd-item-content {
  position: relative;

  z-index: 2;

  min-width: 0;
}


.wwd-item-label {
  display: block;

  margin-bottom: 7px;

  color: #f38831;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: .18em;
}


.wwd-item h3 {
  margin: 0 0 9px;

  color: #07083f;

  font-size: clamp(22px, 2vw, 30px);

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.04em;
}


.wwd-item p {
  max-width: 520px;

  margin: 0;

  color: #737784;

  font-size: 13px;

  line-height: 1.65;
}


/* =========================================================
   ARROW
========================================================= */

.wwd-item-arrow {
  position: relative;

  z-index: 2;

  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(16,27,77,.12);

  border-radius: 50%;

  color: #07083f;

  font-size: 17px;

  transition:
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    transform .35s ease;
}


.wwd-item:hover .wwd-item-arrow {
  background: #f38831;

  border-color: #f38831;

  color: #ffffff;

  transform:
    translate(3px,-3px)
    rotate(6deg);
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.wwd-bottom {
  display: grid;

  grid-template-columns: 150px 1fr 250px;

  align-items: end;

  gap: 30px;

  margin-top: 80px;

  padding-top: 35px;

  border-top: 1px solid rgba(16,27,77,.12);
}


.wwd-bottom-left span {
  color: #8a8e9c;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .18em;
}


.wwd-bottom-center h2 {
  margin: 0;

  color: #07083f;

  font-size: clamp(32px, 4vw, 60px);

  line-height: .95;

  font-weight: 900;

  letter-spacing: -.06em;
}


.wwd-bottom-center h2 span {
  color: #f38831;
}


.wwd-bottom-right {
  display: flex;

  align-items: center;

  gap: 12px;
}


.wwd-bottom-line {
  width: 35px;
  height: 2px;

  flex-shrink: 0;

  background: #f38831;
}


.wwd-bottom-right p {
  margin: 0;

  color: #777b88;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .16em;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

  .what-we-do-container {
    width: min(1440px, calc(100% - 120px));
  }

  .wwd-main {
    gap: 120px;
  }

  .wwd-item {
    min-height: 155px;
  }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .what-we-do-container {
    width: min(1100px, calc(100% - 50px));
  }

  .wwd-main {
    grid-template-columns:
      minmax(300px, .8fr)
      minmax(400px, 1.2fr);

    gap: 55px;
  }

  .wwd-title-small {
    font-size: 55px;
  }

  .wwd-title {
    font-size: 88px;
  }

  .wwd-bottom {
    grid-template-columns: 110px 1fr 200px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .what-we-do-section {
    padding: 80px 0 70px;
  }

  .what-we-do-container {
    width: calc(100% - 40px);
  }

  .wwd-topbar {
    margin-bottom: 40px;
  }

  .wwd-main {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .wwd-left {
    padding-right: 0;
  }

  .wwd-title-small {
    font-size: clamp(48px, 9vw, 70px);
  }

  .wwd-title {
    font-size: clamp(78px, 15vw, 115px);
  }

  .wwd-intro {
    max-width: 650px;
  }

  .wwd-manifesto {
    max-width: 650px;
  }

  .wwd-left-footer {
    margin-top: 40px;
  }

  .wwd-bottom {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 60px;
  }

  .wwd-bottom-right {
    justify-content: flex-start;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .what-we-do-section {
    padding: 65px 0 55px;
  }

  .what-we-do-container {
    width: calc(100% - 30px);
  }

  .wwd-topbar {
    gap: 12px;

    margin-bottom: 35px;
  }

  .wwd-eyebrow {
    font-size: 9px;
  }

  .wwd-top-line {
    width: 45px;
  }

  .wwd-top-index {
    font-size: 8px;
  }


  /* LEFT */

  .wwd-title-wrap {
    margin-bottom: 22px;
  }

  .wwd-title-small {
    margin-bottom: -4px;

    font-size: clamp(40px, 13vw, 58px);
  }

  .wwd-title {
    font-size: clamp(68px, 21vw, 94px);

    letter-spacing: -.08em;
  }

  .wwd-left-line {
    width: 50px;
    height: 3px;

    margin-bottom: 22px;
  }

  .wwd-intro {
    font-size: 14px;

    line-height: 1.75;
  }


  /* MANIFESTO */

  .wwd-manifesto {
    grid-template-columns: 38px 1fr;

    gap: 12px;

    margin-top: 32px;

    padding-top: 20px;
  }

  .wwd-manifesto p {
    font-size: 12px;

    line-height: 1.65;
  }


  .wwd-left-footer {
    margin-top: 35px;

    font-size: 7px;

    flex-wrap: wrap;
  }


  /* RIGHT */

  .wwd-main {
    gap: 40px;
  }

  .wwd-right {
    border-top: 1px solid rgba(16,27,77,.12);
  }

  .wwd-item {
    grid-template-columns: 36px 1fr 34px;

    gap: 12px;

    min-height: 0;

    padding: 22px 0;
  }

  .wwd-item:hover {
    padding-left: 8px;
  }

  .wwd-number {
    font-size: 18px;
  }

  .wwd-item-label {
    margin-bottom: 6px;

    font-size: 7px;
  }

  .wwd-item h3 {
    margin-bottom: 7px;

    font-size: 21px;
  }

  .wwd-item p {
    font-size: 11px;

    line-height: 1.6;
  }

  .wwd-item-arrow {
    width: 32px;
    height: 32px;

    font-size: 14px;
  }


  /* BOTTOM */

  .wwd-bottom {
    margin-top: 45px;

    padding-top: 25px;

    gap: 15px;
  }

  .wwd-bottom-center h2 {
    font-size: clamp(30px, 9vw, 45px);

    line-height: .98;
  }

  .wwd-bottom-right p {
    font-size: 7px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .what-we-do-container {
    width: calc(100% - 24px);
  }

  .wwd-item {
    grid-template-columns: 30px 1fr 30px;

    gap: 9px;

    padding: 19px 0;
  }

  .wwd-number {
    font-size: 16px;
  }

  .wwd-item h3 {
    font-size: 19px;
  }

  .wwd-item p {
    font-size: 10.5px;
  }

  .wwd-item-arrow {
    width: 29px;
    height: 29px;

    font-size: 12px;
  }

  .wwd-bottom-left span {
    font-size: 7px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .wwd-item,
  .wwd-item::before,
  .wwd-item-arrow,
  .wwd-number {
    transition: none !important;
  }

  .wwd-item:hover {
    padding-left: 0;
  }

}


/* =========================================================
   SKYLINE STRATEGIC GROWTH
========================================================= */

.sky-growth-section {
  --sky-navy: #07083f;
  --sky-orange: #f28731;
  --sky-gold: #f6c85f;
  --sky-gold-light: #ffe79a;
  --sky-white: #ffffff;

  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(242, 135, 49, 0.10),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(7, 8, 63, 0.95),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #04052b 0%,
      #07083f 45%,
      #03042a 100%
    );

  color: var(--sky-white);

  padding: 70px 0 100px;

  isolation: isolate;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.sg-bg-grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  opacity: 0.20;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 15%,
      black 80%,
      transparent
    );
}


/* =========================================================
   CINEMATIC GLOWS
========================================================= */

.sg-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;

  z-index: -2;

  opacity: 0.25;
}

.sg-glow-1 {
  top: -220px;
  left: -180px;

  background: var(--sky-orange);
}

.sg-glow-2 {
  right: -250px;
  bottom: -250px;

  background: #272b9c;
}


/* =========================================================
   CONTAINER
========================================================= */

.sg-container {
  width: min(1380px, calc(100% - 80px));

  margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.sg-topbar {
  display: flex;
  align-items: center;

  width: 100%;

  margin-bottom: 80px;
}

.sg-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  white-space: nowrap;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: 2px;

  color: rgba(255,255,255,0.88);
}

.sg-eyebrow i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--sky-orange);

  box-shadow:
    0 0 12px rgba(242,135,49,0.9);
}

.sg-line {
  flex: 1;

  height: 1px;

  margin: 0 40px;

  background:
    linear-gradient(
      90deg,
      rgba(242,135,49,0.7),
      rgba(255,255,255,0.05)
    );
}

.sg-logo {
  display: flex;
  align-items: center;

  max-width: 180px;
}

.sg-logo img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter:
    brightness(0)
    invert(1);

  opacity: 0.95;
}


/* =========================================================
   HERO
========================================================= */

.sg-hero {
  position: relative;

  text-align: center;

  padding: 30px 0 90px;
}

.sg-build-text {
  position: relative;
  z-index: 2;

  font-size: clamp(30px, 4vw, 66px);

  font-weight: 800;

  line-height: 1;

  letter-spacing: -2px;

  color: #ffffff;

  text-shadow:
    0 0 35px rgba(255,255,255,0.08);
}


/* =========================================================
   ₹1000 CRORE
========================================================= */

.sg-crore {
  position: relative;
  z-index: 2;

  display: flex;

  justify-content: center;
  align-items: baseline;

  flex-wrap: wrap;

  margin-top: 20px;

  line-height: 0.9;

  font-weight: 300;

  letter-spacing: -7px;

  background:#F28731;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;

  filter:
    drop-shadow(
      0 10px 30px
      rgba(242,135,49,0.18)
    );
}

.sg-rupee {
  font-size: clamp(80px, 12vw, 190px);

  margin-right: 8px;
}

.sg-counter {
  font-size: clamp(100px, 15vw, 230px);

  font-variant-numeric: tabular-nums;
}

.sg-comma {
  font-size: clamp(70px, 10vw, 160px);

  margin-left: -5px;
}

.sg-crore-word {
  display: block;

  width: 100%;

  margin-top: 12px;

  font-size: clamp(80px, 13vw, 190px);

  letter-spacing: -8px;
}


/* =========================================================
   ORBIT
========================================================= */

.sg-hero-orbit {
  position: absolute;

  border: 1px solid
    rgba(242,135,49,0.20);

  border-radius: 50%;

  pointer-events: none;

  left: 50%;
  top: 48%;

  transform:
    translate(-50%, -50%)
    rotate(-18deg);
}

.orbit-one {
  width: 72%;
  height: 280px;

  animation:
    sgOrbit 16s linear infinite;
}

.orbit-two {
  width: 62%;
  height: 210px;

  border-color:
    rgba(255,255,255,0.06);

  animation:
    sgOrbitReverse 20s linear infinite;
}

@keyframes sgOrbit {

  from {
    transform:
      translate(-50%, -50%)
      rotate(-18deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotate(342deg);
  }

}

@keyframes sgOrbitReverse {

  from {
    transform:
      translate(-50%, -50%)
      rotate(342deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotate(-18deg);
  }

}


/* =========================================================
   GOLD GROWTH BAR
========================================================= */

.sg-growth-bar {
  position: relative;

  width: 100%;

  padding: 30px 20px;

  background:#F28731;

  color: #fff;

  box-shadow:
    0 15px 60px
    rgba(242,135,49,0.18);

  overflow: hidden;
}

.sg-growth-bar::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      110deg,
      transparent 35%,
      rgba(255,255,255,0.45),
      transparent 65%
    );

  transform: translateX(-100%);

  animation:
    sgGoldSweep 5s ease-in-out infinite;
}

@keyframes sgGoldSweep {

  0% {
    transform: translateX(-100%);
  }

  45%,
  100% {
    transform: translateX(100%);
  }

}

.sg-growth-inner {
  position: relative;
  z-index: 2;

  text-align: center;
}

.sg-growth-inner h2 {
  margin: 0;

  font-size: clamp(28px, 4vw, 62px);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -1px;
}

.sg-growth-inner span {
  display: block;

  margin-top: 8px;

  font-size: clamp(22px, 2.4vw, 40px);

  font-weight: 400;

  letter-spacing: 1px;
}


/* =========================================================
   AUDIENCE
========================================================= */

.sg-audience {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;

  margin-top: 95px;
}


.sg-audience-card {

  position: relative;

  text-align: center;

  padding: 45px 30px 40px;

  border: 1px solid
    rgba(255,255,255,0.09);

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.015)
    );

  backdrop-filter: blur(12px);

  transition:
    transform 0.6s cubic-bezier(.2,.8,.2,1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;

  overflow: hidden;
}

.sg-audience-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 10%;

  width: 80%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--sky-orange),
      transparent
    );

  opacity: 0.7;
}

.sg-audience-card:hover {

  transform:
    translateY(-14px);

  border-color:
    rgba(242,135,49,0.5);

  box-shadow:
    0 25px 80px
    rgba(0,0,0,0.35),
    0 0 40px
    rgba(242,135,49,0.08);
}


/* =========================================================
   ICON
========================================================= */

.sg-icon-wrap {

  width: 92px;
  height: 92px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--sky-orange);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(242,135,49,0.18),
      rgba(242,135,49,0.02) 65%,
      transparent 70%
    );

  box-shadow:
    0 0 35px
    rgba(242,135,49,0.12);

  transition:
    transform 0.5s ease;
}

.sg-icon-wrap svg {

  width: 62px;
  height: 62px;

  filter:
    drop-shadow(
      0 0 12px
      rgba(242,135,49,0.35)
    );
}

.sg-audience-card:hover
.sg-icon-wrap {

  transform:
    scale(1.12)
    rotate(3deg);
}


.sg-audience-card h3 {

  margin: 0;

  font-size: clamp(22px, 2vw, 31px);

  font-weight: 800;

  letter-spacing: 1px;

  color: #ffffff;
}

.sg-audience-card p {

  max-width: 330px;

  margin: 15px auto 0;

  font-size: 15px;

  line-height: 1.7;

  color:
    rgba(255,255,255,0.62);
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.sg-bottom {

  text-align: center;

  margin-top: 105px;
}

.sg-bottom-title {

  font-size: clamp(25px, 3.2vw, 52px);

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: -1px;

  color: #ffffff;
}

.sg-bottom-highlight {

  margin-top: 12px;

  font-size: clamp(30px, 4vw, 65px);

  font-weight: 300;

  line-height: 1.1;

  background:#F28731;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.sg-bottom-line {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-top: 32px;
}

.sg-bottom-line span {

  width: 100px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(242,135,49,0.7)
    );
}

.sg-bottom-line span:last-child {

  background:
    linear-gradient(
      90deg,
      rgba(242,135,49,0.7),
      transparent
    );
}

.sg-bottom-line b {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--sky-orange);

  box-shadow:
    0 0 15px
    rgba(242,135,49,0.9);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.sg-reveal {

  opacity: 0;

  transform:
    translateY(45px);

  transition:
    opacity 1s ease,
    transform 1s
      cubic-bezier(.2,.8,.2,1);
}

.sg-reveal.sg-visible {

  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   STAGGER
========================================================= */

.sg-audience-card:nth-child(1) {
  transition-delay: 0.05s;
}

.sg-audience-card:nth-child(2) {
  transition-delay: 0.15s;
}

.sg-audience-card:nth-child(3) {
  transition-delay: 0.25s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .sky-growth-section {
    padding:
      55px 0 80px;
  }

  .sg-container {
    width:
      min(100% - 45px, 760px);
  }

  .sg-topbar {
    margin-bottom: 55px;
  }

  .sg-line {
    margin: 0 20px;
  }

  .sg-logo {
    max-width: 140px;
  }

  .sg-hero {
    padding-bottom: 70px;
  }

  .sg-audience {
    grid-template-columns:
      repeat(3, 1fr);

    gap: 15px;

    margin-top: 70px;
  }

  .sg-audience-card {
    padding:
      35px 18px;
  }

  .sg-audience-card p {
    font-size: 14px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .sky-growth-section {
    padding:
      35px 0 65px;
  }

  .sg-container {
    width:
      calc(100% - 30px);
  }

  .sg-topbar {
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 50px;
  }

  .sg-eyebrow {
    font-size: 10px;

    letter-spacing: 1px;

    gap: 7px;
  }

  .sg-line {
    display: none;
  }

  .sg-logo {
    margin-left: auto;

    max-width: 110px;
  }

  .sg-hero {
    padding:
      20px 0 55px;
  }

  .sg-build-text {

    font-size:
      clamp(23px, 7vw, 34px);

    letter-spacing:
      -1px;
  }

  .sg-crore {

    letter-spacing:
      -3px;

    margin-top:
      18px;
  }

  .sg-rupee {
    font-size:
      clamp(48px, 14vw, 75px);
  }

  .sg-counter {
    font-size:
      clamp(68px, 20vw, 110px);
  }

  .sg-comma {
    font-size:
      clamp(48px, 13vw, 75px);
  }

  .sg-crore-word {

    margin-top:
      8px;

    font-size:
      clamp(57px, 17vw, 100px);

    letter-spacing:
      -4px;
  }

  .orbit-one {
    width: 120%;
    height: 150px;
  }

  .orbit-two {
    width: 105%;
    height: 115px;
  }

  .sg-growth-bar {
    padding:
      22px 15px;
  }

  .sg-growth-inner h2 {
    font-size:
      clamp(24px, 7vw, 34px);
  }

  .sg-growth-inner span {
    font-size:
      clamp(18px, 5vw, 25px);
  }

  .sg-audience {

    grid-template-columns:
      1fr;

    gap: 18px;

    margin-top:
      55px;
  }

  .sg-audience-card {

    padding:
      30px 25px;

    border-radius:
      18px;
  }

  .sg-icon-wrap {

    width: 75px;
    height: 75px;

    margin-bottom:
      18px;
  }

  .sg-icon-wrap svg {

    width: 50px;
    height: 50px;
  }

  .sg-audience-card h3 {

    font-size:
      22px;
  }

  .sg-audience-card p {

    max-width:
      300px;

    font-size:
      14px;
  }

  .sg-bottom {

    margin-top:
      65px;
  }

  .sg-bottom-title {

    font-size:
      clamp(22px, 6.5vw, 30px);
  }

  .sg-bottom-highlight {

    font-size:
      clamp(28px, 8vw, 42px);
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .sg-eyebrow span:nth-child(2),
  .sg-eyebrow i:nth-of-type(1) {
    display: none;
  }

  .sg-logo {
    max-width:
      95px;
  }

  .sg-build-text {
    font-size:
      22px;
  }

  .sg-counter {
    font-size:
      64px;
  }

  .sg-rupee {
    font-size:
      45px;
  }

  .sg-comma {
    font-size:
      45px;
  }

  .sg-crore-word {
    font-size:
      55px;
  }

}