/* Product Sans Font */
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Product Sans', sans-serif !important;
    text-decoration: none;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: transparent;
}

.fa,
.fas,
.far,
.fab {
    font-family: FontAwesome !important;
}

/* Redesigned Navbar Styles */
.lh-1 b {
    font-family: 'Sora', sans-serif !important;
    font-size: 38px;
    color: #3498db !important;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.navbar-brand-box {
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    padding: 10px 20px;
    margin-left: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.navbar-brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4) !important;
}

.nav-link {
    color: #ffffff !important;
    padding: 8px 18px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 2px;
}

.nav-link:hover,
.dropdown-item:hover,
.nav-link.active {
    background-color: #3498db !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    animation: swimmingPool 2s infinite alternate ease-in-out;
    transform: translateY(-2px);
}

@keyframes swimmingPool {
    0% {
        border-radius: 12px;
    }

    33% {
        border-radius: 20px 10px 25px 12px;
    }

    66% {
        border-radius: 12px 25px 10px 20px;
    }

    100% {
        border-radius: 18px 12px 18px 12px;
    }
}

.dropdown-menu {
    background: #191e25 !important;
    border: 1px solid #3498db !important;
    border-radius: 15px !important;
    padding: 10px !important;
    margin-top: 10px !important;
}

.dropdown-item {
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    transition: all 0.2s ease !important;
}

.navbar {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Dropdown on Hover for Desktop */
@media (min-width: 768px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .nav-item.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

.background-clr {
    background-color: #191e25de;
}

body {
    padding-top: 110px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, #ffffff, #9d9999);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 15px 50px;
    color: #040404 !important;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
    display: inline-block;
    vertical-align: top;
}

.footer .footer-left {
    width: 40%;
}

.footer h3 {
    color: #2c3e50;
    margin: 0;
}

.footer h3 span {
    color: #3498db;
}

.footer .footer-links {
    color: #151212;
    margin: 15px 0 10px;
    padding: 0;
}

.footer .footer-links a {
    display: inline-block;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #2c3e50;
}

.footer .footer-name {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.footer .footer-center {
    width: 35%;
}

.footer .footer-center i {
    background-color: #f0f0f0;
    color: #3498db;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 8px 12px;
    vertical-align: middle;
    border: 1px solid #ddd;
}

.footer .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer .footer-center p {
    display: inline-block;
    color: #111;
    font-weight: 500;
    font-size: 16px;
    vertical-align: middle;
    margin: 0;
}

.footer .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 15px;
    line-height: 2;
}

.footer .footer-center p a {
    color: #298acbde;
    text-decoration: none;
}

.footer .footer-links a:before {
    content: "|";
    font-weight: 600;
    font-size: 18px;
    left: 0;
    color: #000;
    display: inline-block;
    padding-right: 5px;
}

.footer .footer-links .link-1:before {
    content: none;
}

.footer .footer-right {
    width: 20%;
}

.footer .footer-about {
    line-height: 22px;
    color: #222;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}

.footer .footer-about span {
    display: block;
    color: #3498db;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer .footer-socials a {
    display: inline-block;
    font-size: 35px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.footer .logo {
    max-width: 100px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Careers Page Styles */
.color-div-blu {
    background: rgb(144, 188, 221);
    color: #191e25;
}

.bg-body-tertiary {
    background-color: #f8f9fa !important;
}

.button-backgrd-col {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-backgrd-col:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.fnt-size-20 {
    font-size: 20px;
}

.head-top-cls-pad {
    padding: 30px 0;
    text-align: center;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

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

@media (max-width: 800px) {
    .footer {
        font: bold 14px sans-serif;
    }

    .footer .footer-left,
    .footer .footer-center,
    .footer .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer .footer-center i {
        margin-left: 0;
    }
}.infra-super-container {
    padding: 40px 0;
    background-color: #f0f4f8;

}

.infra-viewport-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #101011;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    letter-spacing: -1px;
    opacity: 0.8;
}

.infra-viewport-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #1a5276;
    border-radius: 10px;
}

.infra-viewport {
    width: 95%;
    max-width: 1300px;
    height: 600px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.infra-track {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.infra-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    transition: background 0.5s ease;
}

/* Color Palette - Sets */
.infra-slide:nth-child(odd) {
    background-color: #f7fbff;
}

.infra-slide:nth-child(even) {
    background-color: #ffffff;
}

.infra-card-inner {
    display: flex;
    width: 100%;
    gap: 60px;
    align-items: center;
}

.infra-image-side {
    flex: 1.2;
    perspective: 1000px;
    /* For 3D pop effect */
}

.infra-img-frame {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background: #eef2f7;
    border: 12px solid #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.infra-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pop-out Hover Effect (No scaling, just lift + shadow) */
.infra-img-frame:hover {
    transform: translateY(-30px) rotateX(5deg);
    box-shadow: 0 50px 100px rgba(36, 113, 163, 0.3);
    border-color: #ffffff;
}

.infra-content-side {
    flex: 1;
}

.infra-content-side h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a5276;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
}

.infra-content-side p {
    font-size: 1.3rem;
    color: #0e0e0e;
    line-height: 1.6;
}

.infra-specs {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.infra-specs li {
    padding: 12px 0;
    font-weight: 600;
    color: #1a5276;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.infra-specs i {
    color: #2471a3;
    font-size: 1.2rem;
}

/* Navigation Controls */
.infra-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.infra-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #1a5276;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.infra-btn:hover {
    background: #1a5276;
    color: #ffffff;
    transform: scale(1.1);
}

.infra-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Animations */
.infra-slide.active .infra-content-side {
    animation: slideInUp 0.8s both;
}

.infra-slide.active .infra-image-side {
    animation: slideInUp 0.8s 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leadership Spotlight Section */
.leadership-section {
    padding: 80px 0;
    background: #ffffff;
}

.leader-card {
    display: flex;
    align-items: center;
    background: #f8fbff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(26, 82, 118, 0.08);
    /* Premium brand shadow */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    border: 1px solid rgba(26, 82, 118, 0.05);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(26, 82, 118, 0.15);
}

.leader-card.reverse {
    flex-direction: row-reverse;
}

.leader-img-side {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.leader-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.leader-card:hover .leader-img-side img {
    transform: scale(1.05);
}

.leader-content-side {
    flex: 1;
    padding: 60px;
}

.leader-label {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(26, 82, 118, 0.1);
    color: #1a5276;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.leader-name {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #101011;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.leader-role {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
}

.leader-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.leader-signature {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1a5276;
    opacity: 0.8;
}

@media (max-width: 992px) {

    .leader-card,
    .leader-card.reverse {
        flex-direction: column;
    }

    .leader-img-side {
        flex: 0 0 100%;
        min-height: 350px;
    }

    .leader-content-side {
        padding: 40px;
    }
}
