/* Font family import */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/* Common CSS start */
:root {
    --Lato: "Lato", sans-serif;
    --blue: #0D98AF;
    --d-blue: #106065;
}

/* Body styling */
body {
   font-family: var(--Lato);
	font-size: 16px;
	font-weight: 400;
	color: var(--d-blue);
}

/* Header start */
.nav {
    padding: 20px 0;
}

.logo {
    width: 50%;
}

.menu ul li a {
    font-family: var(--Lato);
    color: var(--blue);
}
/* Header end */

/* Banner start */
.banner {}

.b_content {
    padding-top: 148px;
    padding-left: 70px;
}

.b_content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--d-blue);
    animation: typing 4s steps(30, end),;
}

.b_content p {
    font-size: 19px;
    font-weight: 500;
    color: var(--d-blue);
}

.b_img img {}

/* Typing and blink animations */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Flip animation */
.flip-animation {
    width: 100%;
    height: 100%;
    transition: transform 0.9s ease;
    transform-style: preserve-3d;
}

.image-container:hover .flip-animation {
    transform: rotateY(180deg);
}
/* Banner end */

/* About us start */
.about_us {
    background-color: var(--blue);
}

.a_content {
    padding: 30px 0;
}

.a_content h1 {
    font-size: 30px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.a_content p {
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-align: center;
    letter-spacing: 1px;
}
/* About us end */

/* Vision start */
.vision {
    padding: 100px 0;
    background-color: var(--d-blue);
}

.v_h1 {
    font-size: 70px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.v_content {
    padding-top: 50px;
}

.v_content h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--d-blue);
    background-color: white;
    padding: 9px 14px;
    text-align: center;
}

.v_content p {
    padding-top: 20px;
    color: white;
    letter-spacing: 1px;
}
/* Vision end */

/* Mission start */
.mission {
    padding: 100px 0;
    
}

.m_h1 {
    font-size: 100px;
    font-weight: 700;
    color: var(--blue);
}

.m_content h3 {
    background-color: var(--d-blue);
    color: white;
}

.m_content h3:hover {
    background-color: var(--blue);
}

.m_content p {
    display: none;
}

.ui-accordion .ui-accordion-header {
    font-size: 24px;
}
/* Mission end */

/* Service start */
.service {
    background-color: var(--d-blue);
    padding: 100px 0;
}

.s_h1 {
    font-size: 70px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 100px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 25%; /* col-lg-3 */
    box-sizing: border-box;
    padding: 5px;
}

.slider-item img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    padding-top: 25px;
}

.slider-item p {
    text-transform: uppercase;
    color: white;
}
/* Service end */

/* Project start */
.project {
    padding: 100px 0;
}

.p_content {
    padding-top: 100px;
}

.p_h1 {
    font-size: 70px;
    font-weight: 700;
    color: var(--d-blue);
    text-align: center;
}

.p_img img {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p_img img:hover {
    transform: scale(0.9);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Project end */

/* License start */
.license {
    padding-bottom: 100px;
}

.l_h1 {
    font-family: var(--Lato);
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    background-color: var(--d-blue);
    border-radius: 8px;
}

.l_content img {
    display: none;
}
/* License end */

/* Contact start */
.contact {
    padding: 50px 0;
    background-color: var(--d-blue);
}

.c_h1 {
    font-size: 70px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.c_content {
    padding: 15px 0 40px;
    text-align: center;
}

.c_content img {
    width: 100%;
    border-radius: 8px;
    padding-top: 30px;
}

.c_content h6 {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 30px;
}

.c_content p {
    font-size: 15px;
    font-weight: 400;
    color: white;
    line-height: 16px;
}

.c_icon ul li a {
    margin-right: 15px;
    font-size: 30px;
    color: white;
}

.con_p {
    font-size: 16px;
    color: white;
}
/* Contact end */
