*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryTextColor: #232e35;
    --secondaryTextColor: #656d72;

    --borderColor: #f1f1f1;
    --lineColor: #d9d9d9;

    --primaryBackgroundColor: #fff;
    --secondaryBackgroundColor: #f5f3fe;

    --primaryIconColor: #3A4750;
    --primaryIconColorHover: #303841;

    --blueColor: #001f3f;
    --yellowColor: #ffd700;
    --softWhiteColor: #eeeeee;

    --sectionPadding: 6rem 0;
    --itemBorderRadius: 0.7rem;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h5, h6, strong {
    color: var(--primaryBackgroundColor);
}

h4 {
    color: var(--blueColor);
}

p {
    font-size: 1rem;
    line-height: 1.9rem;
}

p, label, input, textarea, li {
    color: var(--secondaryTextColor);
}

a {
    text-decoration: none;
}

.main-container {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width:1200px){
    .main-container {
        width: 90%;
    }
}

/* 2nd nav */
.hero-nav {
    padding: 0.5rem;
    background-color: var(--BlueColor);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
}

.hero-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav ul li a {
    font-size: 15px;
    color: white;
    font-weight: 300;
}

.hero-nav ul li a.active {
    border-bottom: solid;
    font-weight: 500;
}
/* Header & Navbar */
/* 2nd nav */

/* Layout */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
/* Layout */

/* Title */
.pre-title {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--secondaryTextColor);
    position: relative;
    padding-left: 40px;
    width: fit-content;
    width: 400;
    font-size: 0.9rem;
}

.pre-title::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--lineColor);
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
}

.section-title {
    margin: 1rem 0 4rem;
    font-size: 2rem;
}
/* Title */

/* Hero */
#hero {
    display: grid;
    height: 720px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    padding: 0 10rem;
}

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--blueColor);
}

.hero-name span {
    color: var(--yellowColor);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 70%;
}
/* Hero */

/* Vimi */
#vimi {
    background-color: var(--blueColor);
    background-image: url("../img/Pattern.png");
    background-size: cover;
    background-position: top;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: var(--sectionPadding);
    
}

.vimi .pre-title {
    margin: 0 auto;
}

.visimi-title {
    text-align: center;
}

.visimi {
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--primaryBackgroundColor);
    border-radius: var(--itemBorderRadius);
}

.visimi-icon {
    background: var(--borderColor);
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 1.3rem;
    border-radius: 0.5rem;
}

.visimi-icon i {
    color: var(--primaryTextColor);
}

.visimi h4 {
    margin: 1.5rem 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.visimi ul {
    padding: 0 2rem;
    text-align: justify;
}

#future {
    background-color: var(--yellowColor);
    padding: var(--sectionPadding)
}

.future-title {
    text-align: center;
    margin-top: 5rem;
}

.futures {
    padding: 3rem 2rem;
    background-color: var(--primaryBackgroundColor);
    border-radius: var(--itemBorderRadius);
}

.futures h4 {
    text-align: center;
    margin: 1.5rem 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.futures-icon {
    background: var(--borderColor);
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 1.3rem;
    border-radius: 0.5rem;
}

.futures-icon i {
    color: var(--primaryTextColor);
}

.futures ul {
    padding: 0 2rem;
    text-align: justify;
}

.futures span {
    font-weight: bold;
}
/* Vimi */

/* Service */
#service {
    padding: var(--sectionPadding);
}

.services {
    border-radius: var(--itemBorderRadius);
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 31, 63, 0.5);
    transition: all 0.2s ease;
}

.services:hover {
    transform: scale(1.05);
}

.service h1 {
    color: var(--blueColor);
}

.services-cover {
    height: 250px;
}

.services-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-info {
    padding: 0.8rem 1.5rem 1rem;
}

.services-info p {
    margin-top: 0.8rem;
}

.services-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.services a {
    font-weight: 700;
    transition: 0.1s ease-in-out;
}

.services a:hover {
    color: var(--yellowColor);
}

.services-title a {
    color: var(--primaryTextColor);
    font-size: 1.3rem;
}
/* Service */

/* About Us */
#about {
    padding: var(--sectionPadding);
    background: var(--blueColor);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.history {
    display: flex;
    gap: 2rem;
}

.history .line {
    padding: 0 0.7rem;
}

.history .line div {
    width: 2px;
    height: 100%;
    background: var(--yellowColor);
    position: relative;
}

.history-info p {
    margin: 0.6rem 0 1.4rem;
    color: var(--yellowColor);
}

.history-info h4 {
    color: var(--primaryBackgroundColor);
}

.history-years {
    margin-bottom: 3rem;
}

/* The dot on line */
.history .line div::before{
    content: "";
    width: 15px;
    height: 15px;
    background: var(--yellowColor);
    border-radius: 50%;
    position: absolute;
    left: -6px; 
}

.about-right {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-right p {
    color: var(--primaryBackgroundColor);
}
/* About Us */

/* Contact */
#contact {
    padding: var(--sectionPadding);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-title h1 {
    margin-bottom: 2rem;
}

.contact-form div {
    margin-bottom: 1.4rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem 1.3rem;
    font-family: 'Poppins', sans-serif;
    background: var(--secondaryBackgroundColor);
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    resize: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #9d9fa1;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border: 1px solid #7d7d7d;
}

.btn-submit {
    width: 100%;
    padding: 0.75rem 1.3rem;
    background-color: var(--yellowColor);
    color: var(--primaryBackgroundColor);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background-color: var(--primaryTextColor);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item-icon {
    background: var(--borderColor);
    width: 53px;
    height: 53px;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item-icon i {
    color: var(--primaryTextColor);
    margin: 2.3rem;
}

.contact-item-detail h4 {
    margin-bottom: 0.6rem;
}

.contact-item-detail ul {
    padding-left: 20px;
}

.contact-item-detail ul li {
    margin-bottom: 0.5rem;
}
/* Contact */