/* Root Variables */
:root {


  --font-color: #2E3192;
  --bg-color1: #25324D;
  --bg-color1-hover: #25329D;
  --bg-dark: #202B42;
  --light_bird_color: #92BDC4;
  --header-bg: rgba(255, 255, 255, 1);
  --footer-bg: rgba(255, 255, 255, 0.1);
  --phone: "07950808622";
  --whatapp: "+447950808622";
  --facebook_url: "https://www.facebook.com/kiamarketingltd";
  --linkedin_url: "https://www.linkedin.com/in/shafia-cullum-619879181/"; 
  --email: "kia.pa@kia.marketing";




/* Contact Information */
}


.contact-email::before {
    content: "" var(--email);
}

.contact-email a {
    color: inherit; /* Keeps the link color the same as the surrounding text */

}



@import url('https://fonts.googleapis.com/css?family=Poppins');

html {
   /* -webkit-font-smoothing: antialiased;  */
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color1);
    }

body {
        margin: 0;
        padding: 0;
        background-image: url('../images/kiamarketing-logo-bg.svg');
        background-attachment: fixed;
        background-position: center -150px;
        background-repeat: no-repeat;
        background-size: cover;
        color: var(--font-color);
    }
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ---- HEADER SECTION ----- */

header {
    position: fixed;
    top: 0;
    background-color: var(--header-bg);
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 10; /* Ensure header is above other content */
}

.header-sections {
    display: flex;
    background-color: var(--header-bg);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.header-sections .header-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: var(--header-bg);
}

.header-sections .header-left > a > img{
    background-color: var(--header-bg);
    height: 100px;
}

.header-sections .header-middle {
    flex: 0;
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--header-bg);
    gap: 3px;
}

.header-sections .header-middle >ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.header-sections .header-middle >ul > li {
    background-color: var(--header-bg);
    list-style: none;
}

.header-sections .header-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}



/* Get Started Button */
.get_started_container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 200px;

}

.lets_get_started_btn {
    padding: 10px;
    font-size: 16px;
    color: var(--font-color);
    background-color: #fff;
    text-decoration: none;
    border-radius: 25px 7px 25px 7px;
    border: 2px solid #586CA7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lets_get_started_btn:hover {
    background-color: #E8E8E8;
    /* border-color: var(--light_bird_color);*/
}
/* Target your navigation links */
.header-middle a {
    position: relative;
    color: var(--font-color);
    text-decoration: none;
}

/* Create the animated underline */
.header-middle a::after {
    content: '';
    position: absolute;
    width: 0px; /* Start with a thin line */
    height: 0.5px;
    bottom: -10px; /* Position it below the text */
    left: 50%;
    background-image: radial-gradient(circle, var(--bg-color1), var(--header-bg));
    transform: translateX(-50%); /* Center the element */
    transition: width 0.7s ease; /* Gradually expand the width */
}

/* On hover, let the magic unfold */
.header-middle a:hover::after {
    width: 110%; /* Expand to match the word's length */
}

.header-middle a:hover {
    color: #6164b8;
}



main {
    flex: 1; /* Make the main section grow to fill space */
    padding-top: 110px; /* Adjust according to the height of your header  */
    padding-left: 0;
    padding-right: 0;
}

/* Get In Touch Button */
.get_in_touch_container {
    position: sticky;
    bottom: 0;
    height: 70px;
    width: 140px;
    margin: 0;
    margin-left: 20px;
    z-index: 1000;


}

.get_in_touch_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background-color: #92BDC4;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border-radius: 25px 7px 25px 7px;
    border: 2px solid #555;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.get_in_touch_btn:hover {
    background-color: #A0CFD6;
    border-color: #777;
    margin-bottom: 60px;
}

footer {
    background-color: var(--footer-bg);
    backdrop-filter: blur(10px);
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-sections {
    display: flex;
    background-color: var(--footer-bg);

}

.footer-sections .footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: var(--footer-bg);
}

.footer-sections .footer-left > a > img{
    height: 60px;
    height: 70px;
}

.footer-sections .footer-middle {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    background-color: var(--footer-bg);
}

.footer-sections .footer-middle {
     display: flex;
     gap:10px;
     padding: 0 10px;
     justify-content: center;
}

.footer-sections .footer-middle > a > img {
    width: 25px;
    transition: transform 0.3s ease;
}

.footer-sections .footer-middle > a > img:hover {
    transform: scale(1.15);
}


.footer-sections .footer-right {
    display: flex;
    flex: 1;
    background-color: var(--footer-bg);
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.footer-sections .footer-right > a, p {
    color: #92BDC4;
    margin: 0;
    padding: 0;
    text-decoration: none; 
    margin-right: 10px;
}

.footer-sections .footer-right > a {
    font-family: "Roboto-Slab", Helvetica, Arial, Verdana, sans-serif;
    font-weight: 100;
}



.footer-divider-left-not-using {
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, #333, #aaa, #333);
    margin-right: 50px;
}

.footer-divider-right-not-using {
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, #333, #aaa, #333);
    margin-left: 50px;
}


@media (max-width: 750px) {

    main {
        padding-top: 200px;

    }

    .get_started_container {
        margin-right: 0px;
    }

    .header-sections {
        flex-direction: column;
    }

    .header-sections .header-left {
        justify-content: center;
    }

    .header-sections .header-middle {
        margin: 20px 0;
        margin-top: 0;
    }

    .header-sections .header-middle >ul {
        gap: 10px;
    }
    
    .header-sections .header-right {
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .header-middle a::after {
        bottom: -5px; /* Position it below the text */
        height: 1px;
    }

    .footer-sections .footer-middle {
        flex-direction: column;
    }
}



.syne-regular {
  font-family: "Syne", serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Regular weight */
  font-style: normal;
}

.syne-bold {
  font-family: "Syne", serif;
  font-optical-sizing: auto;
  font-weight: 700; /* Bold weight */
  font-style: normal;
}