@font-face {
    font-family: 'Ubuntu Light';
    src: url('../fonts/Ubuntu/Ubuntu-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Ubuntu Medium';
    src: url('../fonts/Ubuntu/Ubuntu-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Ubuntu Regular';
    src: url('../fonts/Ubuntu/Ubuntu-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Ubuntu Bold';
    src: url('../fonts/Ubuntu/Ubuntu-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro Light';
    src: url('../fonts/SourceSans3/SourceSans3-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro Medium';
    src: url('../fonts/SourceSans3/SourceSans3-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro Regular';
    src: url('../fonts/SourceSans3/SourceSans3-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro SemiBold';
    src: url('../fonts/SourceSans3/SourceSans3-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro Bold';
    src: url('../fonts/SourceSans3/SourceSans3-Bold.ttf') format('truetype');
}

:root {
    --gradient-primary: linear-gradient(69.8deg, rgb(14, 72, 222) 2.8%, rgb(3, 22, 65) 97.8%);
    --gradient-hero: 
        radial-gradient(
            circle at bottom left, 
            #01014a 20%, 
            transparent 10%
        ),
        radial-gradient(
            circle at bottom left, 
            #020243 30%, 
            transparent 10%
        ),
        radial-gradient(
            circle at bottom left, 
            #020238 40%, 
            transparent 10%
        ),
        radial-gradient(
            circle at top right, 
            rgb(3, 42, 142) 5%, 
            rgb(1, 10, 32) 75%
        );
}
body {
    font-family: 'Ubuntu Regular';
    line-height: 1.1;
}
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
}
/* Header */
.main-header-area {
    background-color: #f8f9fa; 
}
.main-header {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    height: 60px;
}
.main-header-left a  {
    width: 200px;
}
.main-header-left a img {
    width: 100%;
}
.main-header-left,
.main-header-center,
.main-header-right {
    display: flex;
    align-items: center;
}
.main-header-left {
    flex: 0 0 25%; 
    justify-content: flex-start;
}
.main-header-center {
    flex: 0 0 50%; 
    gap: 20px;
    justify-content: center;
}
.main-header-right {
    flex: 0 0 25%; 
    justify-content: flex-end;
}
.main-header-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s;
}
.main-header-menu a:hover {
    color: #007bff; 
}
.main-header-right a {
    text-decoration: none;
    color: #fff;
    background: var(--gradient-primary);
    border-radius: 5px;
    transition: background-color 0.3s;
    text-shadow: 1px 1px 1px black;
}
.main-header-right a:hover {
    background: var(--gradient-primary);
    color: white;
}
.main-header-toggle {
    display: none;
}
.main-header-menu-mobile {
    display: none;
}
/* Content */
.main-body {
    min-height: 100vh;
}
.main-hero {
    background: var(--gradient-hero);
    height: calc(100vh - 60px);
    position: relative;
}
.main-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.main-hero-text {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
}
.main-hero-text h1 {
    font-family: 'Ubuntu Bold';
    font-size: 80px;
    margin-bottom: 16px;
}
.main-hero-text p {
    font-size: 16px;
}
.main-hero-text h2 {
    font-family: 'Ubuntu Medium';
    font-size: 28px;
}
.main-hero-action {
    margin-top: 30px;
}
.main-hero-action a {
    text-shadow: none;
}
.section {
    padding: 60px 0;
}
.main-title-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main-title-area-left {
    width: 40%;
    padding: 10px;
}
.main-title-area-right {
    width: 60%;
    padding: 10px;
}
.main-title {
    text-align: left;
}
.main-title h2 {
    font-family: 'Ubuntu Medium';
    font-size: 54px;
}
.main-title p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.2;
}
.main-title-box {
    height: 300px;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.title-img {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: black;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.title-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
}
.service-item {
    width: 25%;
    padding: 10px;
}
.service-item-box {
    text-align: center;
    height: 330px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.gradient-icon {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-item i {
    margin-bottom: 30px;
}
.service-item h3 {
    font-family: 'Ubuntu Medium';
}
.service-item p {
    margin-top: auto;
    margin-bottom: 0;
}
.section.cta {
    padding-top: 0;
}
.cta-area {
    background: radial-gradient(
        circle at bottom right, 
        #050536 5%, 
        transparent 0%
    ),
    radial-gradient(
        circle at bottom right, 
        #020238 10%, 
        transparent 10%
    ),
    radial-gradient(
        circle at bottom right, 
        #040444 15%, 
        transparent 10%
    ),
    linear-gradient(
        70deg, 
        rgb(14, 72, 222) 3%, 
        rgb(3, 22, 65) 98%
    );
    /* background: var(--gradient-primary); */
    color: white;
    padding: 60px;
    border-radius: 40px;
}
.cta h2 {
    font-family: 'Ubuntu Medium';
    font-size: 54px;
}
.cta-action {
    margin-top: 20px;
}
.cta-btn {
    color: black;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
}
.cta-btn:hover {
    color: black;
}
.page-header {
    background: var(--gradient-hero);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-header-text {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
}
.page-header h1 {
    font-family: 'Ubuntu Bold';
    font-size: 60px;
    text-align: center;
}
.page-header p {
    font-size: 18px;
    text-align: center;
    margin: 0;
}
.why-us-flex {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}
.why-us-left {
    width: 50%;
    padding-right: 20px;
}
.why-us-right {
    width: 50%;
    padding-left: 20px;
}
.about-img {
    margin-top: 30px;
}
ul.why-us-right {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}
.why-us-point {
    display: flex;
    padding: 20px;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px
}
.why-us-point i {
    font-size: 45px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 30px;
}
.why-us-point h3 {
    font-family: 'Ubuntu Medium';
}
.why-us-point p {
    margin: 0;
}
.about-vision {
    padding-top: 0;
}
.about-vision h2 {
    text-align: center;
}
 .about-vision p {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.services-title {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.services-item {
    padding-top: 0;
}
.services-item-list {
    display: flex;
    flex-wrap: wrap;
}
.services-item-full {
    width: 100%;
    margin-bottom: 20px;
}
.services-box {
    width: 50%;
    margin-bottom: 20px;
}
.services-item-list .services-box:nth-child(odd) {
    padding-right: 10px;
}
.services-item-list .services-box:nth-child(even) {
    padding-left: 10px;
}
.services-box-text {
    height: 180px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
}
.services-box-text h2 {
    background: linear-gradient(to right, #434343 0%, black 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.services-box-text p {
    font-size: 18px;
}
.services-box-img {
    flex: 0 0 50%;
    height: 180px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
    overflow: hidden;
}
.services-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 80%;
}
.articles-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.articles-box {
    flex: 0 0 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
a.articles-box {
    text-decoration: none;
}
.articles-img img {
    width: 100%;
    height: 250px;
    object-fit: cover; 
    display: block;
}
.articles-description {
    padding: 15px;
}
a.articles-box .articles-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 .5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: black;
}
.articles-content {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.articles-pagination {
    margin-top: 30px;
}
.articles-pagination .active>.page-link, .page-link.active {
    background: var(--gradient-primary);
}
.single-article {
    padding: 10px 0;
}
.article-content-img {
    width: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-bottom: 20px;
}
.article-content-img img {
    width: 100%;
}
.single-article .article-content p {
    line-height: 1.2;
}
.form-input {
    margin-bottom: 15px;
}
.contact-form-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.contact-form-left {
    flex: 0 0 50%;
    padding-right: 15px;
}
.contact-form-right {
    flex: 0 0 50%;
    padding-left: 15px;
}
.contact-form-img {
    height: 480px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
    overflow: hidden;
}
.contact-form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-form-enquiry {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
}
.submit-btn {
    background: var(--gradient-primary);
    color: white;
}
.submit-btn:hover {
    color: white;
}
.error-message {
    margin-top: 2px;
    font-size: 13px;
    color: red;
}
.submit-btn .spinner-border {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    border-width: 2px;
}
.submit-btn:disabled {
    color: white;
}
.main-footer-area {
    padding: 3px 0;
    background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
}
.main-footer p {
    text-align: center;
    margin-bottom: 0;
    color: rgb(85, 85, 85);
    font-size: 13px;
}
@media (max-width: 1350px) {
    .main-title-box {
        height: 350px;
    }
    .title-img {
        height: 350px;
    }
}
@media (max-width: 1215px) {
    .main-hero-text h1 {
        font-size: 60px;
    }
}
@media (max-width: 1030px) {
    .page-header h1 {
        font-size: 40px;
    }
    .main-title h2 {
        font-size: 45px;
    }
    .services-box-text h2 {
        font-size: 25px;
    }
    .services-box-text p {
        font-size: 16px;
    }
}
@media (max-width: 1008px) {
    .articles-img img {
        height: 200px;
    }
    a.articles-box .articles-title {
        font-size: 17px;
    }
    .articles-content {
        font-size: 15px;
    }
    .article-content-img {
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .main-header {
        justify-content: space-between;
        position: relative;
    }
    .main-header-center {
        display: none; 
    }
    .main-header-right a {
        display: none; 
    }
    .main-header-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .main-header-menu-mobile {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-radius: 15px;
        padding: 15px;
        flex-direction: column;
        z-index: 1000;
    }
    .main-header-menu-mobile-content {
        background: linear-gradient(19.8deg, rgb(234, 234, 234) 2.8%, rgb(255, 255, 255) 97.8%);
        border: 1px solid #ddd;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }
    .main-header-menu-mobile a {
        display: block;
        padding: 20px;
        text-align: left;
        color: #10529e;
        text-decoration: none;
        font-size: 20px;
    }
    .main-header-menu-mobile a:hover {
        background-color: #f8f9fa;
    }
    .menu-open .main-header-menu-mobile {
        display: flex;
    }
    .main-title-area-left, .main-title-area-right, .service-item{
        width: 50%;
    }
    .service-item-box {
        height: 230px;
    }
    .articles-box {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 860px) {
    .services-box-img {
        height: 200px;
    }
    .services-box-text {
        height: 200px;
    }
    .cta h2 {
        font-size: 40px;
    }
    .why-us-flex, .contact-form-flex {
        flex-direction: column;
    }
    .why-us-left, .why-us-right, .contact-form-left, .contact-form-right {
        width: 100%;
        padding: 0;
    }
    .why-us-right {
        margin-top: 30px;
    }
    .why-us-left .main-title {
        text-align: center;
    }
    .contact-form-img {
        height: 250px;
        margin-bottom: 30px;
    }
}
@media (max-width: 790px) {
    .services-box-img {
        height: 230px;
    }
    .services-box-text {
        height: 230px;
    }
}
@media (max-width: 767px) {
    .page-header {
        height: 300px;
    }
    .page-header h1 {
        font-size: 35px;
    }
    .page-header-text {
        width: 100%;
    }
    .services-box-img {
        height: 230px;
    }
    .services-box-text {
        height: 230px;
    }
    .main-title-area, .services-list, .services-item-list {
        flex-direction: column;
    }
    .main-title-area-left, .main-title-area-right, .service-item, .services-box {
        width: 100%;
    }
    .main-title-box {
        height: 250px;
        padding: 20px;
    }
    .services-box-text {
        height: 160px;
    }
    .about-vision p, .services-title {
        width: 100%;
    }
    .services-item-list .services-box:nth-child(odd) {
        padding-right: 0;
    }
    .services-item-list .services-box:nth-child(even) {
        padding-left: 0;
    }
}
@media (max-width: 600px) {
    .main-hero {
        height: unset;
    }
    .main-hero-content {
        height: unset;
        padding: 80px 0;
    }
    .main-hero-text h1 {
        font-size: 40px;
    }
    .main-hero-text h2 {
        font-family: 'Ubuntu Medium';
        font-size: 22px;
    }
    .main-hero-text {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .main-header-menu-mobile a {
        padding: 15px;
    }
    .cta h2 {
        font-size: 30px;
    }
    .page-header {
        height: 350px;
    }
    .cta-area {
        color: white;
        padding: 30px;
    }
    .main-title-box, .service-item-box {
        height: unset;
    }
    .services-box-text {
        height: unset;
    }
    .main-title h2 {
        font-size: 40px;
    }
}
@media (max-width: 450px) {
    .articles-box {
        flex: 0 0 calc(100% - 10px);
    }
}