/* ==================================================
   SabioInfotech Enhanced Styles - AI Modern Theme
   Color Palette: #0e2c63 (primary), #c01f24 (accent), #6f3a3b (secondary)
   ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&family=Space+Grotesk:wght@400;500;600;700&family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables - Keeping original logo colors */
:root {
    --primary-color: #0e2c63;
    --primary-dark: #0a2149;
    --accent-color: #c01f24;
    --secondary-color: #6f3a3b;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --gradient-primary: linear-gradient(135deg, #0e2c63 0%, #2a5298 100%);
    --gradient-accent: linear-gradient(135deg, #c01f24 0%, #e74c3c 100%);
    --gradient-secondary: linear-gradient(135deg, #6f3a3b 0%, #9b59b6 100%);
    --gradient-light-red: linear-gradient(135deg, #ff6b6b 0%, #ff9f9f 100%);
    --gradient-dark-red: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
    --gradient-5: linear-gradient(135deg, #2980b9 0%, #6dd5fa 100%);
    --gradient-6: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-7: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    --gradient-8: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    --gradient-9: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    --gradient-10: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-11: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    --gradient-premium-hero: linear-gradient(120deg, #112a61 0%, #1f4b92 45%, #4d3f9e 100%);
    --gradient-premium-nav: linear-gradient(130deg, rgba(13, 43, 97, 0.92) 0%, rgba(26, 64, 132, 0.84) 55%, rgba(75, 63, 148, 0.82) 100%);
    --glass-stroke: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --ai-glow: rgba(192, 31, 36, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}
p {
    font-family: "Public Sans", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}
  

.text-bold
{
    font-weight: bold;
}
.container {
    max-width: 1200px;
}
.logo-image {
    height: 40px;
}
.logo-image.white {
    filter: brightness(0) invert(1);
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.text-gradient-light {
    background: var(--gradient-5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.text-gradient-red {
    background: var(--gradient-light-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.text-gradient-ai {
    background: linear-gradient(135deg, #0e2c63 0%, #c01f24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
    color: white;
}

.ai-loader {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ai-circle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    margin: 0 10px;
    animation: pulse 1.5s infinite ease-in-out;
}

.ai-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-circle:nth-child(3) {
    animation-delay: 0.4s;
}

.ai-circle:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -14px, 0) rotate(3deg);
    }
}

/* Header Styles */
.navbar-toggler {
    border: none !important;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar.home-header
{
    position: relative;
}
.navbar canvas {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler:focus:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
}
header.navbar {
    background: transparent;
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1000;
}

header.navbar .container {
    background: var(--gradient-premium-nav);
    border: 1px solid var(--glass-stroke);
    border-radius: 22px;
    padding: 10px 20px;
    box-shadow: 0 14px 40px rgba(6, 20, 49, 0.35);
    backdrop-filter: blur(12px);
    position: relative;
    max-width: 90%;
    z-index: 2;
}
header.navbar .container::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #fff;
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 85px;
    min-width: 200px;
    height: 69px;
}
header.navbar.scrolled {
    padding: 8px 0;
}

header.navbar.scrolled .container {
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(6, 20, 49, 0.45);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-secondary {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 9px 16px !important;
    margin: 0 5px;
    position: relative;
    letter-spacing: 0.2px;
}

.navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #c01f24 0%, #ff5c7a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-nav .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(6, 20, 49, 0.45);
    border-radius: 14px;
    padding: 15px 0;
    margin-top: 10px;
    background: linear-gradient(130deg, #12316f 0%, #1f4687 100%);
    backdrop-filter: blur(8px);
    min-width: 220px;
}

.navbar-nav .dropdown-toggle::after {
    border: none !important;
    width: auto !important;
    height: auto !important;
    content: '▼' !important;
    font-size: 0.6rem !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-left: 4px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    vertical-align: 0.15em !important;
}

.navbar-nav .dropdown-toggle:hover::after {
    color: var(--accent-color) !important;
    transform: scale(1.3) !important;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    color: var(--accent-color) !important;
    transform: rotate(-180deg) !important;
}

.navbar-nav .dropdown-item {
    padding: 12px 25px;
    font-weight: 500;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid transparent;
}

.navbar-nav  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-left-color: #c01f24;
}
.navbar-nav  .dropdown-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-left-color: #c01f24;
}

.btn-get-started {
    background: linear-gradient(120deg, #c01f24 0%, #e74c3c 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    margin-left: 15px;
    display: block;
    box-shadow: 0 10px 28px rgba(192, 31, 36, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 45%);
    opacity: 0.5;
    transform: scale(1.4);
    transition: transform 0.35s ease;
}

.btn-get-started:hover::before {
    transform: scale(1);
}

.btn-get-started:hover {
    background: linear-gradient(120deg, #d42e33 0%, #c01f24 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(192, 31, 36, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 25%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04) 100%);
    background-size: 100% 40px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
    animation: shimmer 12s linear infinite;
}

.slide {
    padding: 60px 0;
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    height: 550px;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    right: 6%;
    top: 15%;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    opacity: 0.5;
    animation: drift 8s ease-in-out infinite;
}

.slide::after {
    content: '';
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 180px;
    height: 180px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: rotate(22deg);
    opacity: 0.45;
}

@keyframes shimmer {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 40px;
    }
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    right: 6%;
    top: 15%;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    opacity: 0.5;
    animation: drift 8s ease-in-out infinite;
}

.slide::after {
    content: '';
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 180px;
    height: 180px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transform: rotate(22deg);
    opacity: 0.45;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: saturate(1.15) contrast(1.06);
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 19, 45, 0.3) 18%, rgba(8, 19, 45, 0.08) 62%, rgba(8, 19, 45, 0.26) 100%);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
    max-width: 500px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slide-image {
    position: relative;
}

.slide-image::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -34px;
    width: 170px;
    height: 170px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    transform: rotate(22deg);
}

.slide-image::after {
    content: '';
    position: absolute;
    right: -16px;
    top: -16px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.45) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: 0.45;
}

.slide-image img {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 60px rgba(9, 25, 57, 0.55);
    animation: float 6s ease-in-out infinite;
    max-height: 400px;
    max-width: 100%;
    margin: 0 auto;
}
.home-slider .slick-dots {
    bottom: 8px;
}
@media screen and (max-width:767px) {
    .home-slider .slick-dots {
        bottom: 20px;
        padding-bottom: 1em;
    }
}
.slick-dots li button:before {
    width: 18px;
    height: 6px;
    font-size: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.65);
    content: '';
}

.slick-dots li.slick-active button:before {
    background: #c01f24;
    /* width: 30px; */
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 14px 24px rgba(6, 20, 49, 0.38), 0 0 20px rgba(255, 255, 255, 0.16);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 0 18px 32px rgba(6, 20, 49, 0.34), 0 0 32px rgba(255, 255, 255, 0.25);
        transform: translateY(-3px) scale(1.04);
    }
}

.floating-element {
    position: absolute;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.96) 0%, rgba(214, 229, 255, 0.45) 45%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    box-shadow: 0 14px 24px rgba(6, 20, 49, 0.38), 0 0 18px rgba(255, 255, 255, 0.16);
    animation: float 4s ease-in-out infinite, glowPulse 6s ease-in-out infinite;
}

.floating-element i {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
    background: radial-gradient(circle at 26% 25%, #c01f24 0%, #e74c3c 55%, #970d26 100%);
    color: white;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.07);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dots button.active {
    background: #c01f24;
    transform: scale(1.2);
}
.banner-hero {
    padding: 120px 0 80px !important;
}
@media (max-width: 768px) {
    .banner-hero {
        padding: 80px 0 50px !important;
    }
}
@media (max-width: 567px) {
    .banner-hero {
        padding: 80px 0 50px !important;
        padding-top: 100px !important;
    }
}
.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* Company Intro */
.company-intro {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.badge-tag {
    display: inline-block;
    background: rgba(14, 44, 99, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}
.badge-tag-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}
.badge-tag-red {
    display: inline-block;
    background: rgba(192, 31, 36, 0.1);
    color: #e74c3c;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

.consulting-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.12), rgba(192, 31, 36, 0.12));
    border: 1px solid rgba(14, 44, 99, 0.15);
}

.consulting-logo-icon {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e2c63 0%, #1f4f9d 100%);
    box-shadow: 0 0 0 3px rgba(192, 31, 36, 0.18);
}

.consulting-logo-icon::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c01f24;
}

.consulting-brand-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: linear-gradient(90deg, #0e2c63 0%, #c01f24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.consulting-mini-card {
    border: 1px solid rgba(14, 44, 99, 0.12);
}

.consulting-main-card {
    border: 1px solid rgba(192, 31, 36, 0.2);
    background: linear-gradient(135deg, rgba(14, 44, 99, 0.05), rgba(192, 31, 36, 0.05));
}

.consulting-cta-btn {
    background: linear-gradient(135deg, #0e2c63 0%, #c01f24 100%);
    border: none;
}

.consulting-cta-btn:hover {
    background: linear-gradient(135deg, #123a80 0%, #d62d32 100%);
}
.badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.badge-ai::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd966 0%, #ffffff 80%);
    box-shadow: 0 0 12px rgba(255, 217, 102, 0.35);
}

.badge-ai-hiring {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f7d6d9;
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-learn-more:hover {
    color: var(--accent-color);
    gap: 15px;
}

.intro-image {
    position: relative;
}
.company-intro img {
    border-radius: 20px;
    box-shadow: var(--box-shadow-hover);
    animation: float 6s ease-in-out infinite;
    max-height: 90%;
}
.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    width: 180px;
    text-align: center;
    animation: float 5s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 10%;
    right: 0;
    background: var(--gradient-primary);
    color: white;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 0;
    animation-delay: 1s;
}

.floating-card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.floating-card p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    background: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 44, 99, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* Innovation Section */
.innovation-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.innovation-image {
    position: relative;
}

.innovation-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 44, 99, 0.1) 0%, rgba(14, 44, 99, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.innovation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.innovation-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray-color);
    margin: 0;
}

.story-content,.excellence-content,.overview-content {
    font-family: "Public Sans", sans-serif;
}

.tech-stack {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.tech-item {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
    min-width: 110px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.tech-item i {
    font-size: 40px;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 600;
    font-family: "Public Sans", sans-serif;
    color: var(--dark-color);
}
/* CTA Section */
.cta-section {
    background: var(--gradient-10);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C1000,0 800,50 500,50C200,50 0,0 0,0Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100% 100px;
    background-position: bottom;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Public Sans", sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: "Noto Sans", sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    background: var(--primary-dark);
    color: white;
}

.footer-logo {
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-family: "Elms Sans", sans-serif;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-family: "Elms Sans", sans-serif;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Elms Sans", sans-serif;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright, .design-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.design-credit a {
    color: var(--accent-color);
}

.design-credit a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}
footer ul {
    padding-left: 0;
}
/* Responsive Styles */
@media (max-width: 992px) {
    header.navbar .container {
        border-radius: 16px;
        padding: 10px 14px;
    }

    .hero-slider {
        /* padding-top: 88px; */
    }

    .slide {
        height: auto;
        min-height: auto;
        padding: 120px 0 90px;
        text-align: center;
    }

    .slide-title {
        font-size: 2.7rem;
        margin-bottom: 14px;
    }

    .slide-description {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }

    .slide-buttons {
        justify-content: center;
        gap: 12px;
    }

    .slide-buttons .btn {
        min-width: 220px;
    }

    .slide-image {
        margin: 24px auto 0;
        max-width: 560px;
    }

    .slide-image img {
        width: 100%;
        max-height: 320px;
        object-fit: cover;
        object-position: center;
    }

    .slider-controls {
        display: none;
    }

    .home-slider .slick-dots {
        bottom: 12px;
    }

    #navbarNav {
        margin-top: 20px;
        padding: 14px;
        border-radius: 14px;
        background: rgba(5, 17, 40, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .navbar-nav .nav-link,
    .navbar-nav .nav-link.active {
        color: #ffffff;
    }

    .btn-get-started {
        margin-left: 0;
    }
    
    .intro-content h2,
    .section-header h2,
    .innovation-content h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 102px 0 78px;
        min-height: auto;
    }

    .slide::before,
    .slide::after,
    .slide-image::before,
    .slide-image::after {
        display: none;
    }
    
    .slide-title {
        font-size: clamp(2rem, 7vw, 2.4rem);
    }
    
    .slide-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .slide-buttons .btn {
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
    }

    .slide-image {
        margin-top: 22px;
    }

    .slide-image img {
        max-height: 270px;
    }
    
    .slider-controls {
        display: none;
    }
    
    .intro-content h2,
    .section-header h2,
    .innovation-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .floating-card {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        animation: none;
    }
    
    .floating-card:nth-child(2),
    .floating-card:nth-child(3) {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .slide {
        padding: 75px 0 46px;
    }

    header.navbar {
        padding: 10px 0;
    }

    header.navbar .container {
        border-radius: 14px;
    }

    #navbarNav {
        margin-top: 10px;
        padding: 12px;
    }

    .slide-title {
        font-size: 1.85rem;
        line-height: 1.24;
        height: auto;
        overflow: visible;
    }

    .slide-description {
        font-size: 0.98rem;
        height: auto;
        overflow: visible;
        margin-bottom: 22px;
    }

    .slide-buttons {
        gap: 10px;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
    }

    .slide-image {
        margin-top: 18px;
    }

    .slide-image img {
        max-height: 230px;
        border-radius: 20px;
    }

    .home-slider .slick-dots {
        bottom: 6px;
    }

    .badge-ai {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 1rem;
    }

    .logo-primary {
        font-size: 18px;
    }
    
    .logo-secondary {
        font-size: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 0 0 0 !important;
        text-align: center;
    }
    .nav_backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav_backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .btn-get-started {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for AOS animation visibility */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Ensure sections have proper visibility */
section {
    overflow: hidden;
    position: relative;
}

/* Fix for floating elements */
.floating-element, .floating-card {
    transition: transform 0.3s ease;
}

.floating-element.in-view, .floating-card.in-view {
    transform: translateY(0);
}

/* Ensure proper stacking context */
.hero-slider,
.company-intro,
.services-section,
.innovation-section,
.cta-section {
    position: relative;
    z-index: 1;
}

/* Fix for footer visibility */
.footer {
    position: relative;
    z-index: 2;
}

/* ========== AI FEATURES UPGRADED ========== */
.ai-features {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.feature-card-ai {
    background: white;
    border-radius: 28px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0e2c63, #c01f24);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card-ai:hover::before {
    transform: scaleX(1);
}

.feature-card-ai:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -12px rgba(192, 31, 36, 0.2);
    border-color: rgba(192, 31, 36, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0e2c63, #c01f24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card-ai h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.7rem;
    padding: 4px 12px;
    background: #f0f4ff;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========== AI USE CASES UPGRADED ========== */
.ai-usecases {
    padding: 80px 0;
    background: #f8fafc;
}

.usecases-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.usecases-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-item {
    background: white;
    padding: 18px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.tab-item i {
    font-size: 22px;
    color: var(--primary-color);
}

.tab-item.active {
    background: linear-gradient(105deg, #0e2c63, #c01f24);
    color: white;
    border-color: #c01f24;
    box-shadow: 0 20px 35px -12px rgba(192, 31, 36, 0.3);
}

.tab-item.active i {
    color: white;
}

.usecases-content {
    flex: 2;
}

.content-box {
    display: none;
    background: white;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    animation: fadeSlide 0.4s ease;
}

.content-box.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.case-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.case-header i {
    font-size: 40px;
    color: var(--primary-color);
}

.content-box ul {
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-box ul li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.case-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.case-metrics span {
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== AI RESULTS / BUSINESS IMPACT ========== */
.ai-results {
    background: linear-gradient(125deg, #0e2c63 0%, #c01f24 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0 40px;
}

.result-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.result-card h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffb6c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.result-trend {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

.trust-bar {
    text-align: center;
    margin-top: 40px;
}

.trust-bar p {
    opacity: 0.9;
    font-size: 1rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-logos span {
    opacity: 0.7;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== AI HIRING / RECRUITMENT CARD ========== */
.ai-hiring-section {
    padding: 80px 0;
    background: #ffffff;
}

.hire-mega-card {
    background: linear-gradient(115deg, #0e2c63 0%, #c01f24 100%);
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 35px 60px -20px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.hire-mega-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -20px rgba(192, 31, 36, 0.4);
}

.hire-content {
    padding: 48px;
    color: white;
}

.hire-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hire-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.hire-stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hire-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.hire-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.hire-feature i {
    color: #ffb6c1;
}

.btn-neon {
    background: white;
    border-radius: 60px;
    padding: 14px 38px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    transition: 0.2s;
    border: none;
}

.btn-neon:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    color: var(--accent-color);
    background: white;
}

.hire-illustration {
    text-align: center;
    padding: 30px;
}

.hire-illustration i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
}
.hire-illustration p
{
    font-size: 1.2rem;
    background: #ffffff;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 30px;
}
.hire-illustration small
{
    font-size: 0.8rem;
    margin-top: 20px;
    color:  #ffffff;
    font-family: 'Elms Sans';
}
/* Responsive additions for new sections */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .usecases-wrapper {
        flex-direction: column;
    }
    .hire-features {
        grid-template-columns: 1fr;
    }
    .hire-content {
        padding: 32px;
    }
    .hire-content h2 {
        font-size: 1.8rem;
    }
    .result-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .case-metrics {
        flex-direction: column;
        gap: 10px;
    }
    .hire-stats {
        flex-direction: column;
    }
    .hire-stat {
        justify-content: center;
    }
}