* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'Inter', sans-serif;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-color: #2b5b9a;
    /* Blue */
    --secondary-color-secondary: #c25403;
    /* Orange */
    --accent-color: #4caf50;
    /* Green */
    --bg-color: #f5f5f5;
    /* Light Gray */
    --text-color: #444444;
    /* Dark Gray */
}

.textPrimary {
    color: var(--primary-color);
}

.textSecondary {
    color: var(--secondary-color-secondary)
}

.bgSecondary {
    background-color: var(--secondary-color-secondary);
}

.bgPrimary {
    background-color: var(--primary-color);
    color: #C3DEF9;
}

/* Base font size */
html {
    font-size: 16px;
}

/* Headings */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5em;
}

/* Paragraph */
p {
    font-size: 1rem;
    line-height: 1.6;
    /* color: var(--text-color); */
    margin-bottom: 1em;
}

.primaryColor {
    color: var(--primary-color);
}

.icon-card {
    transition: transform 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-5px);
}

.icon-card i {
    color: var(--primary-color);
}

h2,
h5 {
    color: var(--primary-color);
}

.bg-green {
    background-color: #2b5b9a;
}

.form-control,
.form-control:focus {
    border: 1px solid #346dc0;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    color: #f4f4f4;
}

.contactBtn {
    margin-top: 20px;
    background-color: #346dc0;
    color: #fff;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.home-card-img1 {
    /* max-height: 200px; */
    border-radius: 4px;
}

.home-card1 {
    border-radius: 50px 5px 50px;
}

.img-radius1 {
    border-radius: 80px 5px 70px;
}

/* Responsive tweak (optional) */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

.nav-item {
    padding: 2px 15px;
}

.nav-link.active {
    color: var(--primary-color);
}

.bg-orange,
.btnSecondary {
    background-color: var(--secondary-color-secondary);
}

.btnPrimary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.footerLinks {
    text-decoration: none;
    color: var(--text-color);
}

.footerLinks:hover {
    text-decoration: dotted;
    color: var(--accent-color);
    ;
}

.footerLinksSec {
    margin: 5px auto;
}

.btn-green {
    background-color: #0e3d79;
    color: #fff;
}

.socialIcons i {
    padding: 2px 7px;
    color: var(--accent-color);
}

.socialIcons i:hover {
    color: var(--primary-color);
}

.contactUsBtn {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* background-color: var(--primary-color);
    color: #fff; */
}

a:hover,
.contactUsBtn:hover {
    color: var(--primary-color);
}

.subscribeSec {
    margin-top: -50px;
    z-index: 99;
    border-radius: 10px;
    background-color: rgba(49, 19, 154, 0.6);
}

.aboutSec {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.aboutSec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://www.mattickair.com.au/wp-content/uploads/2020/05/asset-1920x550.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -1;

}

.plateformSec {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plateformSec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://img1.wsimg.com/isteam/getty/1322681694/:/cr=t:5.92%25,l:0%25,w:100%25,h:88.15%25/rs=w:600,h:300,cg:true');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -1;

}

.healthCard-body {
    min-height: 340px;
}

.healthCardContent {
    min-height: 170px;
}

.aboutcontent h1,
.plateformSec h1 {
    animation: fadeDown 1s ease forwards;
    opacity: 0;
}

.aboutcontent p,
.plateformSec p {
    animation: fadeUp 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btnPrimary:hover {
    background-color: #e46b14;
    transform: scale(1.05);
}

.aboutSec {
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    min-height: 400px;
    /* full screen height */
}

.aboutcontent {
    text-align: center;
    /* text alignment */
}

.aboutcontent h1,
.aboutcontent p {
    color: #fff;
}


.ourStory h2 {
    font-weight: 700;
    color: #fff;
}

.ourStory p {
    font-size: 1.1rem;
    color: #fff;
}

.faddedWhite {
    color: #aba8a8;
}

.ourStories {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    /* Adjust for clarity */
}

.ourStories .container {
    z-index: 2;
    position: relative;
    padding-top: 60px;
}

.ourStory h2,
.ourStory p {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


.ourStorySec {
    margin: 40px auto 20px;
}

.ourStory p.fw-semibold {
    font-style: italic;
    color: #ffffff;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-top: 30px;
}

.teamCard:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.teamCard .card-body a {
    color: var(--primary-color);
}

.team-img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
}

.btnShadow {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.icon-card:hover i {
    animation: bounceIcon 0.6s;
    color: var(--secondary-color);
}

@keyframes bounceIcon {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.teamCard .card-img-top {
    transition: transform 0.3s ease;
}

.teamCard:hover .card-img-top {
    transform: scale(1.05);
}

.teamCard .card-body {
    position: relative;
}

.teamCard .card-body::before {
    content: attr(data-role);
    position: absolute;
    top: -15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

/* .joinUs {
    background-image: url('/img/wavebgg.png');
    background-repeat: no-repeat;
} */
.join_Us {
    position: relative;
    overflow: hidden;
}

.bg-video2 {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    /* Adjust for clarity */
}

.join_Us .container {
    z-index: 2;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.joinUsSec {
    padding: 50px 20px;
}

.joinUs .joinUsBtn {
    transition: transform 0.3s ease;
}

.joinUs .joinUsBtn:hover {
    transform: scale(1.05);
}

.footerSec {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    padding-top: 30px;
}

.bg-dull-white {
    background-color: #f4f4f4;
}

.whatWeDo {
    /* background: url('/img/AOiA+elements-01.png'); */
}

.tabImg {
    border-radius: 25px;
    max-height: 352px;
}

#plateformTab {
    border: none;
}

.nav-link {
    border: none
}

#plateformTab .nav-link {
    color: var(--text-color)
}

#plateformTab .nav-link {
    color: var(--accent-color);
    border: none;
    border-top: 3px solid var(--secondary-color-secondary);
    border-radius: 15px;
    gap: 10px;
}

#plateformTab .nav-link.active {
    color: var(--accent-color);
    border: none;
    border-left: 3px solid var(--accent-color);
    border-radius: 15px;
}

.heading2 {
    color: var(--accent-color);
    font-size: 27px;
}


.ccc {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ffffff 25%, rgba(0, 0, 0, 0.05) 25%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wifi-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    max-width: 850px;
    width: 100%;
}

.wifi-content {
    padding: 2rem;
    flex: 1;
}

.wifi-image {
    flex: 1;
    background: url('/path-to-your-image.jpg') no-repeat center;
    background-size: cover;
}

.wifi-image img {
    width: 100%;
    height: auto;
    border-radius: 0 1rem 1rem 0;
    object-fit: cover;
}

.coreCard {
    border: 2px dashed var(--accent-color);
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    padding: 25px 1px;
}

.bgf3f3f3 {
    background-color: #f3f3f3;
}

.connectBtn {
    text-decoration: none;
    color: #fff;
}

.s-card {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border: 1px dashed #fff;
    border-radius: 15px;
    margin-bottom: 20px;
}

.formHeading {
    color: #9a8f8f;
    font-size: 14px;
    padding-bottom: 7px;
}

.healthCard {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 50px 5px;
    background-color: #e5e5e5;
}

.healthCard img {
    border-radius: 10px 100px;
}

.consultancyCrad {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    border-radius: 50px 5px;
    border: 1px dashed var(--secondary-color-secondary);
}

.plateform-card-img {
    /* border-radius: 100%;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
}

.plateform-card-img img {
    border-radius: 100px;
    border: 1px solid red;
    padding: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.text-justify {
    text-align: justify;
}

.flip-image {
    animation: flipY 5s linear infinite;
    transform-style: preserve-3d;
}

@keyframes flipY {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@media (max-width: 768px) {
    .wifi-card {
        flex-direction: column;
    }

    .wifi-image img {
        border-radius: 0 0 1rem 1rem;
    }

    .home_carousel {
        min-height: 300px;
    }
}