﻿/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*===== VARIABLES CSS =====*/
:root {
    --header-height: 3rem;
    /*===== Colors =====*/
    --first-color: #0000;
    --first-color-dark: #0000;
    --text-color: #524748;
    --first-color-light: #7B6F71;
    --first-color-lighten: #FBF9F9;
    /*===== Font and typography =====*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*===== Font weight =====*/
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    /*===== Margins =====*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*===== z index =====*/
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
    :root {
        --biggest-font-size: 4.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--body-font);
    margin:0%;
    padding:0%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Center the nav links */
    width: 100%; /* Ensure the navbar takes full width */
}

.nav-link {
    margin-right: 10px !important; /* Add margin to the right of the nav links */
    transition: color 0.3s !important; /* Smooth transition for color change */
    font-weight: bold !important; /* Make font bold */
    font-family: Arial, sans-serif !important; /* Adjust font family */
    
    font-size: 1em;
    color: white !important;

}

    .nav-link:hover {
        color: #007bff; /* Change color on hover */
        text-decoration: underline; /* Underline on hover */
        position: relative;
        top: -2px;
    }

.logo-img {
    height: 100px;
}

@media only screen and (max-width: 768px) {
    .logo-img {
        height: 80px;
    }
}

h1, h2, h3, ul, p {
    margin: 0;
}

h2, h3 {
    font-weight: var(--font-semi-bold);
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*===== CLASS CSS =====*/
.section {
    padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
    text-align: center;
}

.section-title {
    font-size: var(--h1-font-size);
    color: var(--first-color);
    margin-bottom: var(--mb-3);
}

.section-subtitle {
    display: block;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
}

.tech-logos span {
    margin-right: 10px;
    height: 20px; /* Logo height */
    margin: 0 5px; /* Margin between logos */
}

/*===== LAYOUT =====*/
.bd-container {
    max-width: 1024px;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
}

.bd-grid {
    display: grid;
    gap: 1.5rem;
}

.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: #000;
}

/*===== FOOTER =====*/

.footer
{
    background-color: var(--first-color-dark);
    color: var(--first-color-lighten);
    text-align: center;
    padding: 1rem 0; /* Reduced padding for the footer */
    height: auto; /* Change to auto to allow the footer to adjust its height based on content */
    margin-top: auto; /* Push footer to the bottom */
    position: relative; /* Ensure footer does not overlap */
    bottom: 0; /* Align footer to bottom */
    width: 100%; /* Ensure footer takes full width */
}

.footer__title {
    font-size: var(--h1-font-size);
    margin-bottom: 0.5rem; /* Reduced margin */
    font-weight: var(--font-semi-bold);
}

.tech-logos {
    margin: 0.5rem 0; /* Adjust margin to reduce space between tech logos and other elements */
}

.contact-text {
    margin: 0.5rem 0; /* Reduced margin for contact text */
}

.footer__social {
    margin: 0.5rem 0; /* Reduced margin for social links */
}

.footer__copy {
    margin: 0.5rem 0; /* Reduced margin for copyright text */
}




@media screen and (min-width: 1024px) {
    .bd-container {
        margin-left: auto;
        margin-right: auto;
        line-height: 20px;
    }
}


/*Welcome Page CSS*/
.GR-text {
    background: linear-gradient(60deg, #f5e876, #4eadd9) !important; /* Red to black gradient */
    -webkit-background-clip: text !important; /* Clip background to text */
    -webkit-text-fill-color: transparent !important; /* Make text color transparent */
    display: inline-block !important; /* Ensure it behaves like text */
    font-weight: bold;
}
.GR-text:hover {
    background: linear-gradient(60deg, #4eadd9,#f5e876) !important; /* Red to black gradient */
    -webkit-background-clip: text !important; /* Clip background to text */
    -webkit-text-fill-color: transparent !important; /* Make text color transparent */
    display: inline-block !important; /* Ensure it behaves like text */
    font-weight: bold;
}

.white-text {
    background: white !important; /* Red to black gradient */
    -webkit-background-clip: text !important; /* Clip background to text */
    -webkit-text-fill-color: transparent !important; /* Make text color transparent */
    display: inline-block !important; /* Ensure it behaves like text */
    font-weight: bold;
    color: floralwhite;
}

.text_custom {
    color: #00bd2a;
}

sup {
    vertical-align: super;
    font-size: smaller;
}


.row > * {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.row {
    --bs-gutter-x: 0rem;
}

.head-text {
    font-size: 4em
}
.sub-text {
    font-size: 2em
}
.sub-c-text {
    font-size: 5em
}

.sub-text-small{
    font-size: 1em;
    position:relative;
    top:20px;
}

.rounded-c-4 {
    border-radius: 10px;
}

.bg-black{
    background-color:black;
}

@media screen and (max-width: 500px) {
    .head-text {
        font-size: 3em
    }
}
