@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Open Sans", sans-serif; /* Main font */
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  transition: all .3s ease;
}

/* Variables */
:root {
  --deepBlue: #05286c;
  --mainBlue: #2575e6;
  --secondary--color: #8729fc;
  --accent: #ff329e;
  --black: #141414;
  --white: #fff;
  --light:#F8FAFC;

  /* Slate Colors */
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-600: #475569;
  --color-slate-800: #1e293b;

  /* Sky Colors */
  --color-sky-100: #e0f2fe;

  /* Fonts */
  --ff-OpenSans: "Open Sans", sans-serif;
  --ff-inter: "Inter", sans-serif;

  /* Typography */
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem; 
  --font-size-lg: 1.125rem;  
  --font-size-xl: 1.25rem;    
  --font-size-2xl: 1.5rem;    
  --font-size-3xl: 1.875rem;  
  --font-size-4xl: 2.25rem;   
  --font-size-5xl: 3rem;      

  /* Spacing (Tailwind scale translated) */
  --space-3: 0.75rem;   /* 12px */
  --space-5: 1.25rem;   /* 20px */

  /* Border Radius */
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;

  /* Misc */
  --border-radius2: 10px;
  --padding-top: 5rem;
}


/* ============ CAREERS SECTION ============ */

.hero__section{
  background: 
      linear-gradient(to right, rgba(37,117,230,0.9), rgba(12,211,204,0.9)),
      url("../assets/images/about.png");
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    text-align: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.hero__section .hero__content {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero__section .hero__content h1{
    font-size: var(--font-size-5xl);
    text-transform: capitalize;
    color: var(--color-slate-800);
    font-weight: 900;
    font-family: var(--ff--original);
    margin-bottom: 1rem;
}
.hero__section .hero__content p{
    font-size: var(--font-size-base);
    color: var(--color-slate-800);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}






.careers__about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 5rem;
}

.careers__about h2 {
    font-size: var(--font-size-xl);
    color: var(--color-slate-800);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: var(--font-size-2xl);
    text-transform: capitalize;
}

.careers__about p {
    margin-bottom: 2rem;
    color: var(--black);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.careers__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.careers__container .box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.careers__container .box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.careers__container .box h3 {
  font-size: var(--font-size-lg);
  color: var(--mainBlue);
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-transform: capitalize;
}

.careers__container .box p {
  font-size: var(--font-size-base);
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.careers__container .box .btn {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  background-color: var(--accent);
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.careers__container .box .btn:hover {
  background-color: var(--mainBlue);
}

.careers__cta {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.careers__cta h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-slate-800);
}

.careers__cta p {
  font-size: var(--font-size-base);
  color: var(--black);
}

.careers__cta a {
  color: var(--mainBlue);
  text-decoration: underline;
}
.careers__cta a:hover {
  text-decoration: none;
}
