/* ==============================
   BasisGrotesque Fonts
============================== */
@font-face {
    font-family: 'BasisGrotesque-Black';
    src: url('../assets/font/BasisGrotesque-Black-Pro.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


@font-face {
    font-family: 'BasisGrotesque-Bold';
    src: url('../assets/font/BasisGrotesque-Bold-Pro.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'BasisGrotesque-Medium';
    src: url('../assets/font/BasisGrotesque-Medium-Pro.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'BasisGrotesque-Regular';
    src: url('../assets/font/BasisGrotesque-Regular-Pro.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'BasisGrotesque-Light';
    src: url('../assets/font/BasisGrotesque-Light-Pro.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* ==============================
   HouschkaRoundedAlt Fonts
============================== */
@font-face {
    font-family: 'HouschkaRoundedAlt-Light';
    src: url('../assets/font/HouschkaRoundedAlt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'HouschkaRoundedAlt-LightItalic';
    src: url('../assets/font/HouschkaRoundedAlt-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}


@font-face {
    font-family: 'HouschkaRoundedAlt-Medium';
    src: url('../assets/font/HouschkaRoundedAlt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'HouschkaRoundedAlt-MediumItalic';
    src: url('../assets/font/HouschkaRoundedAlt-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

/* Font Class */
.basis-900 { 
    font-family: 'BasisGrotesque-Black', sans-serif;
}

.basis-700 { 
    font-family: 'BasisGrotesque-Bold', sans-serif;
}

.basis-500 { 
    font-family: 'BasisGrotesque-Medium', sans-serif;
}

.basis-400 { 
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.basis-300 { 
    font-family: 'BasisGrotesque-Light', sans-serif;
}

.houschka-300 { 
    font-family: 'HouschkaRoundedAlt-Light', sans-serif;
}

.houschka-300-italic { 
    font-family: 'HouschkaRoundedAlt-LightItalic', sans-serif;
}

.houschka-500 { 
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

.houschka-500-italic { 
    font-family: 'HouschkaRoundedAlt-MediumItalic', sans-serif;
}

body {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

section .sec-title {
    font-size: 3rem;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

section .sec-subtitle {
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.7rem;
    font-style: normal;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar */
.navbar {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    position: fixed;
    background-color: #000000;
}

.navbar .logo {
    width: auto;
    height: 50px;
    margin: 15px 0;
    max-width: 100%;
}

.navbar-nav .nav-link {
    font-size: 22px;
    line-height: 34px;
    font-weight: 400;
    position: relative;
    margin-top: -8px;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.navbar-nav .nav-link:hover {
    color: #4e84c4 !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    left: 5px;
    right: 5px;
    height: 2px;
    display: block;
    position: absolute;
    background-color: #4e84c4;
}

.navbar-nav .dropdown .dropdown-menu {
    border: 1px solid #ffffff47;
    background-color: #000000;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* Custom Bootstrap Class */
.navbar-toggler-icon {
    filter: invert(1);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
}

/* ==========================
        HERO SECTION
========================== */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    padding-bottom: 49%;
    background: #000;
}

.hero-img {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.hero h1 {
    color: #ffffff;
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 600;
    max-width: 1020px;
    line-height: 5rem;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero p {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
    font-size: 2rem;
    font-style: normal;
    max-width: 700px;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel,
.hero-carousel .item,
.hero-carousel video {
    height: 100vh;
}

.hero-carousel video {
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: rgba(0,0,0,0.45);
}

/* Animation Classes */
.text-animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.text-animate-out {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

/* KEYFRAMES */
@keyframes fadeRise {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:none; }
}

@keyframes slideSharp {
    from { opacity:0; transform:translateX(-40px); }
    to   { opacity:1; transform:none; }
}

@keyframes scaleGlide {
    from { opacity:0; transform:scale(.95) translateY(20px); }
    to   { opacity:1; transform:none; }
}

@keyframes snapUp {
    from { opacity:0; transform:translateY(50px); }
    to   { opacity:1; transform:none; }
}

/* Video toggle button */
.hero #videoToggle {
    height: 77px;
    width: 77px;
    color: #ffffff !important;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgb(255 255 255 / 14%);
    position: absolute;
    bottom: 2px;
    left: 2px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
}

.hero #videoToggle:hover {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.hero #videoToggle i {
    font-size: 36px;
    line-height: 1;
}

/* Hero learn more button */
.hero-learn-more {
    position: relative;
    z-index: 99;
    margin-top: 18px;
}

.hero-learn-more a {
    position: absolute;
    bottom: 20px;
    left: 13%;

    background: #2469bc;
    border-radius: 6.25rem;
    font-size: 1.125rem;
    color: #fff !important;
    letter-spacing: .03125rem;
    height: 3.5rem;
    max-height: 3.5rem;
    line-height: 160%;
    padding: .75rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.hero-learn-more a:hover {
    background: #1a5194;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================
  SOLUTIONS OVERVIEW SECTION
========================== */
.solutions-overview {
    padding: 120px 0 95px 0;
}

.solutions-overview h2 {
    margin-bottom: 30px;
}

.solutions-overview .owl-nav i {
    font-size: 24px;
}

.solutions-overview .owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    top: -75px;
    right: 22px;
}

.solutions-overview .owl-theme .owl-nav .owl-prev {
    margin-left: -20px;
}

/* Owl Carousel Item */
.solutions-overview .owl-item {
    display: flex;
    height: 100%;
}

.solutions-overview .owl-stage {
    display: flex;
}

/* Card Container */
.solutions-overview .owl-carousel .item {
    height: 100%;
    display: flex;
}

/* Card */
.solutions-overview-card {
    border: none;
    transition: transform 0.3s;
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Image */
.solutions-overview-card img {
    border-radius: 8px;
    width: 100% !important;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Card body that grows to fill space */
.solutions-overview-card-body {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 200px;
}

.solutions-overview-card-body h5 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
    flex-shrink: 0;
}

.solutions-overview-card-body p {
    color: #000;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Read more */
.read-more {
    width: 100%;
    display: flex;
    color: #000;
    line-height: 2rem;
    align-items: center;
    font-size: 1.125rem;
    text-decoration: none;
    letter-spacing: .03125rem;
    padding: .5rem 0.5rem .5rem 0;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    border-bottom: .0625rem solid #dfdee3;
    font-family: 'BasisGrotesque-Medium', sans-serif;
    margin-top: auto;
    flex-shrink: 0;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

.read-more:hover {
    border-color: #000000;
}

/* Navigation buttons */
.owl-nav button {
    position: absolute;
    top: 40%;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #000;
}

.owl-nav .owl-prev {
    left: -25px;
}

.owl-nav .owl-next {
    right: -25px;
}

.owl-dots {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-overview-card img {
        height: 200px;
    }
    
    .solutions-overview-card-body {
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .solutions-overview-card img {
        height: 180px;
    }
    
    .solutions-overview-card-body {
        min-height: 160px;
    }
    
    .solutions-overview-card-body h5 {
        font-size: 2rem;
        line-height: 2rem;
    }
}

/* ==========================
    AWS SOLUTIONS SECTION
========================== */
.aws-solutions{
    color: #ffffff;
    padding: 120px 0;
    background-color: #000000;
}

.aws-solutions .item {
    margin-bottom: 40px;
}

.aws-solutions .item:last-child {
    margin-bottom: 0;
}

.aws-solutions .item .challenge-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.aws-solutions .item h3 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 10px;
    font-family: 'BasisGrotesque-Medium';
}

.aws-solutions .item p {
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.aws-solutions .btn {
    max-width: max-content;
    padding: .625rem 3.125rem .625rem 0;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Medium';
    display: flex;
    align-items: center;
    gap: 12px;
}

.aws-solutions .btn span {
    height: 56px;
    width: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffffff;
}

.aws-solutions .btn span i {
    color: #000;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.aws-solutions .btn:hover {
    text-decoration: underline
}

.aws-solutions .btn:hover i {
    -webkit-animation: hoverEffect .75s;
    animation: hoverEffect .75s;
}

@keyframes hoverEffect {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        transform: translateX(-50px);
    }
    
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================
      MINI ABOUT SECTION
========================== */
.mini-about {
    padding: 4rem 0;
}

.mini-about p {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.about-page.cards .icon {
    margin: auto;
    width: 100px;
    height: 100px;
    display: flex;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #00aaff 100%);
}

.about-page.cards .card-title {
    font-size: 1.5rem;
    font-family: 'BasisGrotesque-Medium';
}

.about-page.cards p {
    line-height: 1.5;
    max-height: max-content !important;
}

/* ==========================
 AWS FOCUS SOLUTIONS SECTION
========================== */
.aws-focus-solutions {
    padding: 120px 0;
}

.aws-focus-solutions .item {
    margin-bottom: 35px;
}

.aws-focus-solutions .item:last-child {
    margin-bottom: 0;
}

.aws-focus-solutions .item p {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: .03125rem;
    max-height: 245px;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

/* ==========================
        PARTNER SECTION
========================== */
.partners-seciton {
    padding: 4rem 0;
    background-color: #1a1e1e;
}

.partners-seciton h2 {
    font-weight: 600;
    color: #ffffff;
}

.partners-seciton img {
    height: 55px;
    filter: brightness(0.8);
    width: auto;
    object-fit: contain;
    object-position: center;
}


/* ==========================
        CONTACT SECTION
========================== */
.contact-seciton {
    min-height: 50vh;
    background: radial-gradient(
        circle at top,
        #2a2f2f 0%,
        #1f2424 40%,
        #141818 100%
    );
    color: #ffffff;
}

.contact-seciton p {
    color: #d1d5db;
    max-width: 1200px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.contact-seciton .btn {
    padding: 0.7rem 2.2rem;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    background: transparent;
    color: #d1d5db;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'BasisGrotesque-Regular';
}

.contact-seciton .btn:hover {
    background: #ffffff;
    color: #111111;
}

@media (max-width: 768px) {
    .long-run-title {
        font-size: 2.2rem;
    }
}

/* ==========================
        About Us Page
========================== */
.human-innovation-section {
    padding: 4rem 0;
    color: #ffffff;
    background-color: #000000;
}

.human-innovation-section p {
    color: #d1d5db;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.video-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    background-color: #000;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plyr--video {
    border-radius: 12px;
    background: #000;
}

/* Fix for plyr play button positioning issue */
.plyr__control--overlaid {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
    margin: 0 !important;
}

.plyr__control--overlaid:hover {
    background: #ffffff !important;
    transform: translate(-50%, -50%) scale(1.05) !important;
}

.plyr__control {
    color: #fff !important;
}

.plyr__control:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    background-color: #00b2ff !important;
}

/* ==========================
        Contact Seciton
========================== */
.contact-us-section {
    color: #ffffff;
    background-color: #000000;
}

.contact-form-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
    animation: fadeIn 2s ease;
}

.contact-form-container h2 {
    font-size: 3rem;
    margin-bottom: 35px;
    text-align: center;
    font-family: 'BasisGrotesque-Bold';
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container input, 
.contact-form-container textarea {
    padding: 12px;
    border: 1px solid #ffffff6b;
    border-radius: 5px;
    background-color: #0e0e0e;
    color: white;
    font-size: 1rem;
}

.contact-form-container textarea {
    min-height: 120px;
}

.contact-form-container button {
    background: #00aaff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form-container button:hover {
    background: #0088cc;
}

.contact-form-container .form-control {
    color: #e7e7e7;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.contact-form-container .form-control::placeholder {
    color: #7a7a7a;
}

.contact-form-container .form-control:focus {
    background-color: transparent;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================
        Privacy Policy
========================== */
.privacy-policy {
    padding: 4rem 0;
}

.privacy-policy .sticky-content {
    color: #000;
    font-size: 1.7rem;
    line-height: 1.5rem;
    margin-bottom: 1.7rem;
    font-family: 'BasisGrotesque-Bold';
}

.privacy-policy .sticky-content .sticky-title {
    color: #4e84c4;
    margin-bottom: 20px;
}

.privacy-policy .sticky-content a {
    margin-bottom: 18px;
    color: #575757;
    text-decoration: none;
    display: block;
    letter-spacing: 0;
    transition: 0.3s all ease-in-out;
    font-family: 'BasisGrotesque-Regular';
}

.privacy-policy .sticky-content a:hover {
    color: #000000;
}

.privacy-policy .sticky-content a.active {
    color: #000000;
}

.privacy-policy .sticky-content ul li:last-child a {
    margin-bottom: 0;
}

.privacy-policy .privacy-section {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: .03125rem;
    margin-bottom: 40px;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.privacy-policy .privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-policy .privacy-section {
    scroll-margin-top: 125px;
}

.privacy-contact-section {
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    background-color: #000000;

    font-weight: 400;
    line-height: 1.7;
    font-size: 2rem;
    font-style: normal;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.privacy-contact-section a {
    color: #c7c7c7;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.privacy-contact-section a:hover {
    color: #ffffff;
}

.privacy-contact-section .privacy-section {
    scroll-margin-top: 180px;
}

/* ==========================
        Services Page
========================== */
.services-page ul {
    margin-bottom: 0;
}

.services-page ul li {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.3rem;
    font-style: normal;
    margin-bottom: 8px;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.services-page ul li:last-child {
    margin-bottom: 0;
}

.services-page .check-icon {
    font-weight: 600;
    margin-right: 5px;
}

.services-page.cloud .icon {
    display: inline-block;
    margin-bottom: 20px;
}

.services-page.cloud .icon i {
    font-size: 38px;
}

.services-page.cloud .card {
    border: 0;
    background-color: #f3f3f3;
}

.services-page.cloud .card-title {
    font-size: 2rem;
    line-height: 1.3;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

.services-page.cybersecurity {
    color: #ffffff;
    background-color: #000000;
}

.services-page.cybersecurity .cybersecurity-items .flex-shrink-0 {
    width: 40px;
}

.services-page.cybersecurity .cybersecurity-items i {
    font-size: 28px;
    margin-top: 8px;
}

.services-page.cybersecurity .cybersecurity-items li {
    margin-bottom: 25px;
}

.services-page.cybersecurity .cybersecurity-items .item-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5rem;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

.services-page.cybersecurity .cybersecurity-items .item-text {
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.5rem;
    font-style: normal;
    margin-bottom: 0;
    letter-spacing: 0;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

/* ==========================
      Our Solutins Page
========================== */
.solutions-page {
    padding: 4rem 0;
}

.solutions-page .card {
    border: 0;
    height: 100%;
    background: linear-gradient(145deg, #f3f3f3 0%, #e0e0e0 50%);
}

.solutions-page i {
    color: #353535;
}

.solutions-page .card .card-title {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

.solutions-page .card .card-text {
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.5rem;
    font-style: normal;
    margin-bottom: 0;
    letter-spacing: .03125rem;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

/* ==========================
        Footer Styles
========================== */
.footer-container {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h5 {
    margin-bottom: 16px;
    font-family: 'HouschkaRoundedAlt-Medium', sans-serif;
}

.footer-content .f-logo {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.footer-content .p-logo {
    max-width: 220px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0,170,255,0.35));
}

.footer-content .f-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-content .f-item {
    margin-bottom: 0.6rem;
}

.footer-content .f-link,
.footer-content .address {
    color: #777777;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
    font-family: 'BasisGrotesque-Regular', sans-serif;
}

.footer-content .f-link:hover {
    color: #ffffff;
}

.footer-content .address {
    line-height: 1.7;
}

/* Social Icons */
.footer-content .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.footer-content .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #777777;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-content .social-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* CTA Buttons */
.footer-content .cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content .cta-btn {
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.footer-content .cta-primary {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
}

.cta-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.footer-content .cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.footer-content .cta-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Footer Bottom */
.footer-content .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777777;
    font-size: 1.2rem;
}