
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #c1121f;
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 800;
  transition: color .3s;
  font-size: 2.3em;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__toggle, 
.nav__close {
  font-size: 2rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .3s;
}
.nav__close:hover
{
    color: var(--first-color);
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-size: var(--normal-font-size);
    transition: color .3s;
    padding-bottom: 5px;
    position: relative;
  }
  .nav__link::after {
    content: ''; 
    position: absolute; 
    left: 0;
    bottom: 0px; 
    width: 100%; 
    height: 2px;
    background-color: #c1121f; 
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav__link:hover::after {
    transform: scaleX(1); }
.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }
  .nav__close, 
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}
/* =================Main================== */
.about-us
{
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper
{
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin: 0px auto;
}
.about-image
{
    width: 65%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.about-image img
{
    border-radius: 10px;
    display: block;
    width: 100%;
    height: auto;
    transition: transform .3s ease;
}
.about-image:hover img
{
  transform: scale(1.025);
}
.about-content
{
    width: 100%;
    margin-left: 4%;
}
.about-content h3
{
  color: #c1121c;
  font-size: 3.5rem;
  font-weight: 600;
}
.about-content h5{
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.about-content span
{
  color: #c1121f;
}
.about-content p
{
  color: #333;
  font-size: 1.1em;
}

.social-links
{
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-links a
{
    display: inline-block;
    margin-right: 10px;
    color: rgba(29,29,29);
    font-size: 32px;
    transition: .4s ease;
}
.social-links a:hover
{
    color: #c1121f;
}

@media screen and (max-width: 768px)
{
    .wrapper
    {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .about-content
    {
        width: 100%;
    }
    .about-content
    {
        padding: 0px;
        margin-top: 50px;
        margin-left: 0;
    }

}

/* Values Section */
/* =============== */
/* =============== */
/* =============== */
/* =============== */

.values-section {
  padding: 40px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  bottom: 120px;
}

.values {
 
  margin: 20px 0;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
    background: linear-gradient(145deg, #f8f8f8, #e9e9e9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
 
}

.value-title {

  color: #c1121f; 
  margin-bottom: 20px;
  font-size: 3.5em; 
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
}

.values ul {
  list-style-type: none;
  padding: 0;
}

.values li {
  margin: 15px 0;
  padding: 15px;
  border-radius: 8px; 
}
.values li::before
{
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #181818;
  border-radius: 50%;
  margin-right: 10px;
}
.values li:hover {
  background-color: #ececec; 
}
.values li strong {
  color: #181818; 
}

/* Responsive Styles */
@media (max-width: 768px) {
  .values-section  {
    padding: 20px; 
  }

  .value-title  {
    font-size: 3.5em; 
  }

  .values li {
    font-size: 1em;
    padding: 10px; 
  }
  .values li strong
  {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .value-title  {
    font-size: 1.5em; 
  }

  .values li {
    font-size: 0.9em; 
    padding: 8px;
  }
}

/* Footer */
/* =============== */
/* =============== */
/* =============== */
/* =============== */

/* footer Section */
footer
{
    position: relative;
    width: 100%;
    margin-top: auto;
    padding: 50px 100px;
    background: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .footer-container
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}
footer .footer-container .sec
{
    margin-right: 30px;
}
footer .footer-container .sec.aboutus
{
    width: 40%;
}
footer .footer-container h2
{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}
footer .footer-container h2::before
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
}
footer #description
{
    color: #999;
}
.sci
{
    margin-top: 20px;
    display: flex;
}
.sci li
{
    list-style: none;
}
.sci li a
{
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: .5s;
}
.sci li a:hover
{
    background-color: #f00;
}
.sci li a .fa
{
    color: #fff;
    font-size: 20px;
    transition: .5s;
}
.quicklinks
{
    position: relative;
    width: 25%;
}
.quicklinks ul li
{
    list-style: none;
}
.quicklinks ul li a
{
     color: #999;
     text-decoration: none;
     margin-bottom: 10px;
     display: inline-block;
     transition: .3s;
}

.quicklinks ul li a:hover
{
    color: #fff;
    transition: .3s;
}
.contact
{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}
.contact .info
{
    position: relative;
}
.contact .info li
{
    display: flex;
    margin-bottom: 16px;
}
.contact .info li span:nth-child(1)
{
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}
.contact .info li a
{
   color: #999;
   text-decoration: none;
   transition: .2s;
}
.contact .info li a:hover
{
    color: #fff;
    transition: .2s;
}
.copyright
{
    width: 100%;
    background-color: #181818;
    text-align: center;
    padding: 8px 100px;
    color: #999;
}

@media (max-width: 991px)
{
    footer{
        padding: 40px;
    }
    footer .footer-container
    {
        flex-direction: column;
    }
    footer .footer-container .sec
    {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    footer .footer-container .sec.aboutus,
    .quicklinks, .contact
    {
        width: 100%;
    }
    .copyright
    {
             padding: 8px 40px;
    }
}
